我用的是spring-boot和graphql-spqr。GraphQL查询和变异是可行的。但是GraphiQL webfrontend并没有在最右边的一列中显示“documentatin explorer”中的模式。为什么?
我的图形ql控制器
@RestController
public class LiquidoGraphQLController {
private final GraphQL graphQL;
@Autowired
public LiquidoGraphQLController(
TeamsGraphQL teamsGraphQL, // my graphQL service classes
PollsGraphQL pollsGraphQL,
UserGraphQL userGraphQL
) {
// Automatically create GraphQL Schema from graphql-spqr annotations
GraphQLSchema schema = new GraphQLSchemaGenerator()
.withBasePackages("org.doogie.liquido")
.withOperationsFromSingleton(teamsGraphQL, TeamsGraphQL.class)
.withOperationsFromSingleton(pollsGraphQL, PollsGraphQL.class)
.withOperationsFromSingleton(userGraphQL, UserGraphQL.class)
.withOutputConverters()
.generate();
this.graphQL = new GraphQL.Builder(schema).build();
}
}
谢谢你的提示。经过一些调试,我发现在我的Custom GraphQL Controller中,我直接返回了GraphQL数据,而不是带有数据{}的ExecutionResult
,错误:[]
Black Lives Matter �� GraphQL IDE Monorepo Note: The primary maintainer @acao is on hiatus until December 2020Looking for the GraphiQL Docs?: This is the root of the monorepo! The full GraphiQL docs a
我直接从书上抄了这些例子。代码应该在JFrame上绘制一些东西,但没有显示任何东西(除了JFrame),这里是带有main方法的类 下面是JPanel的一个子类
我试图在应用程序启动时显示项目的listview。但在应用程序启动时,没有显示listview,只有一个空白屏幕。下面是代码: MainActivity.java 但是现在我在logcat中得到了以下内容: 并且应用程序停止..请帮助!
我把拐角半径设为10。但图像视图不显示角半径。 我也尝试过使用,但也不起作用。 当我在图像视图上使用背景色时,如下所示,它完美地显示了带有圆角的视图。 我还尝试更改图像的图像、宽度和高度,以检查图像对于视图是否太大。但它也不起作用。 我就是这样调用ImageView的。
问题内容: 我在应用程序中使用JUL。通常,Netbeans打开一个输出选项卡,该选项卡显示“ Tomcat”并显示我生成的日志。运行正常。但是突然间,我意识到我的日志根本没有显示,只有打印出来。甚至都不是最热情的人。 我怀疑这可能是我包含的图书馆,这使我的日志混乱了。那有可能吗?图书馆可以改变我的日志显示方式吗?由于我有点迷路,我该如何调查? 问题答案: 我怀疑这可能是我包含的图书馆,这使我的日
我已经为我的spring boot应用程序配置了测微计和prometheus,我可以在endpoint/执行器/prometheus处看到以下指标(使用计时器生成): 但当我在Grafana中运行其中一个查询(针对prometheus实例配置)时,我没有看到任何结果。 这需要任何配置吗?