在 Spring Boot 2.2.0 应用程序中命中 REST 端点的问题

Posted

技术标签:

【中文标题】在 Spring Boot 2.2.0 应用程序中命中 REST 端点的问题【英文标题】:Problem hitting REST endpoint in Spring Boot 2.2.0 application 【发布时间】:2020-02-16 08:17:24 【问题描述】:

我尝试使用 GraphQL 和 MongoeDB 创建一个 Spring Boot REST 应用程序(我从那篇文章 https://medium.com/oril/spring-boot-graphql-mongodb-8733002b728a 开始)。应用程序启动,但当我尝试将内容发布到端点时出现 404 错误。

我还读到 @PostConstruct 不再受 2.2.0 支持(这是我稍后会尝试解决的另一个问题,我尝试在启动期间预加载数据库)。

pom.xml

    <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.0.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.tsoai-api</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
        <lombok.version>1.18.10</lombok.version>
        <commons-io.version>2.5</commons-io.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>$lombok.version</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>$commons-io.version</version>
        </dependency>
        <dependency>
            <groupId>com.graphql-java</groupId>
            <artifactId>graphql-spring-boot-starter</artifactId>
            <version>3.6.0</version>
        </dependency>
        <dependency>
            <groupId>com.graphql-java</groupId>
            <artifactId>graphql-java-tools</artifactId>
            <version>3.2.0</version>
        </dependency>
        <dependency>
            <groupId>com.graphql-java</groupId>
            <artifactId>graphiql-spring-boot-starter</artifactId>
            <version>3.6.0</version>
        </dependency>

        <dependency>
            <groupId>javax.annotation</groupId>
            <artifactId>javax.annotation-api</artifactId>
            <version>1.3.2</version>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

我的主应用程序文件看起来像这样(没什么特别的!):

@SpringBootApplication
public class DemoApplication 
    public static void main(String[] args) 
        SpringApplication.run(DemoApplication.class, args);
    

MainController.java

@RestController
@RequestMapping(path = "/query")
public class MainController 

    private GraphQL graphQL;
    private GraphQlUtility graphQlUtility;

    @Autowired
    MainController(GraphQlUtility graphQlUtility) throws IOException 
        this.graphQlUtility = graphQlUtility;
        graphQL = graphQlUtility.createGraphQlObject();
    

    @PostMapping(path= "/")
    public ResponseEntity query(@RequestBody String query)
        ExecutionResult result = graphQL.execute(query);
        System.out.println("errors: "+result.getErrors());
        return ResponseEntity.ok(result.getData());
    


当我在http://localhost:8080/query 上发帖时,我收到了这个错误:


    "timestamp": "2019-10-19T16:10:19.136+0000",
    "status": 404,
    "error": "Not Found",
    "message": "No message available",
    "path": "/query"

【问题讨论】:

【参考方案1】:

检查运行 Spring Server 的端口,根据中型帖子,他们已将其配置为在 :8000 上运行,而您正在点击 :8080 . 错误表明它找不到映射到此 api-endpoint 的任何控制器。

http://localhost:8000/query/

`

【讨论】:

我将其更改为 :8080 因为我已经在 :8000 端口上有了一些东西。 查询后加一个'/'。【参考方案2】:

这个错误的原因可能是 Spring boot 没有扫描这个类。请尝试在 Spring Boot 主类上添加 ComponentScan 注释,并使用您保存控制器的包,如下所示。 @ComponentScan(basePackages= "com.example")

【讨论】:

是的,我读过 atComponentScan,但我认为只有在去掉 atSpringBootApplication 注释时才应该使用它。 我认为我们使用这个注解并不是为了摆脱SpringBooApplication注解而是为组件扫描添加额外的配置。你可以有多个@ComponentScan 注解。【参考方案3】:

它将仅匹配 /query/ 而不是 /query 。如果要同时匹配 /query/query/ ,可以将查询方法中 @PostMapping 中的 path 保留为默认值。

@RestController
@RequestMapping(path = "/query")
public class MainController 

    @PostMapping
    public ResponseEntity query(@RequestBody String query)

    


【讨论】:

以上是关于在 Spring Boot 2.2.0 应用程序中命中 REST 端点的问题的主要内容,如果未能解决你的问题,请参考以下文章

在应用程序上下文中将 Spring Boot 2.1.9 碰撞到 2.2.0 没有 AuthenticationManager

如何在 Spring Boot 2.2.0 的集成测试中禁用安全性?

JAXB ClassNotFoundException使用Java 11构建Spring Boot App 2.2.0

迁移到 Spring Boot 2.2.0 @JsonIgnore 不起作用

Springfox swagger 在 Spring Boot 2.2.0 中不起作用

Spring Boot 2.2.0,性能提升+支持Java13