spring 启动应用程序 运行 但端点抛出 404

spring boot application running but endpoint throwing 404

我正在尝试编写示例 Spring 引导应用程序。

我最初的想法是这是一个易于遵循和编写的示例,但我无法在到达端点时打印简单的语句。

我现在不想使用任何视图(HTML、JSP 等),因为我想先了解后端。

我已关注:

然而,在谷歌搜索了一整天后仍然卡住了。

所以让我重申一下我所做的步骤。

  1. spring.io 初始化了一个 spring 引导项目并下载了 zip
  2. 解压缩 zip 并将其导入 Eclipse。
  3. 配置了一个带有端点的 Rest 控制器,只打印一条 hello world 语句。
  4. Tomcat 9.0.56 出现在我的系统上。
  5. 运行 TodoApplication 作为 Java 应用程序或 Spring 启动。
  6. URL我打的是http://localhost:8080/greet
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloWorldController {
    @GetMapping("/greet")
    public String sayHelloWorld() {
        return "Hello World";
    }
}

Spring 引导应用程序:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TodoApplication {

    public static void main(String[] args) {
        SpringApplication.run(TodoApplication.class, args);
    }

}

pom 文件:

<?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.6.2</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <groupId>com.sample</groupId>
    <artifactId>todo</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <name>todo</name>
    <description>Back-end for To DO App</description>

    <properties>
        <java.version>1.8</java.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-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

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

导航后 greet URL:

在控制台出现以下异常:

所以xerx593指出的解决方案如下:

  1. 确保 select 在 https://start.spring.io/ 中打包为 war/jar。
  2. 导入 zip 文件。
  3. 将您的控制器 class 添加到 SpringBootApplication 的相同或子包中,请参阅此以获取更多信息 https://docs.spring.io/spring-boot/docs/current/reference/html/using.html#using.structuring-your-code
  4. 打开终端并将目录更改为工作文件夹。
  5. 运行 mvn spring-boot:运行 如果使用 maven.
  6. 点击端点,例如 http://localhost:8080/greet 或 curl 请求。

我还注意到 8080 端口正在侦听,但 spring 引导无法在其上注册,在这种情况下设置

server.port = port other than 8080 

在 application.properties.