在 Spring Boot 应用程序的生产环境中禁用 GraphiQL Playground

Posted

技术标签:

【中文标题】在 Spring Boot 应用程序的生产环境中禁用 GraphiQL Playground【英文标题】:Disable GraphiQL playground on production in spring boot application 【发布时间】:2021-08-19 12:49:49 【问题描述】:

我在graphiql Playground 的spring boot 应用程序中添加了pom 依赖项,带有“graphiql-spring-boot-starter-5.0.2.jar”依赖项。

现在我想为生产环境禁用 Playground。

并已尝试使用如下的 Spring Boot 应用程序,但这些选项都无法禁用 GraphiQL 端点。

    graphiql.enabled=假 dgs.graphql.graphiql.enabled=false

您能否建议我们如何禁用 GraphiQL?

【问题讨论】:

【参考方案1】:

您实际上可以在 application.yml 或 application.properties 中的生产配置文件中添加以下配置,以禁用生产中的 Playground。

我已经用 com.graphql-java:playground-spring-boot-started:11.0.0

对其进行了测试

在 application.yml 中

graphql:
 playground:
  enabled: false

在 application.properties 中

graphql.playground.enabled = false

【讨论】:

以上是关于在 Spring Boot 应用程序的生产环境中禁用 GraphiQL Playground的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 2.0.0.M7 生产环境部署

Spring Boot 最佳实践集成Jsp与生产环境部署

spring boot--日志开发和生产环境切换自定义配置

Spring BootSpring Boot项目设置多个配置文件,并在生产环境中的Tomcat设置对应的配置文件

在 EC2 服务器上将 Java Spring Boot 服务部署到生产环境

Spring Boot 禁用 Swagger 的三种方式