如何显示 Spring Boot“测试”当我使用@GetMapping时,在浏览器上并在IntelliJ IDEA上运行Tomcat服务器?

发布于 2025-01-20 18:41:46 字数 1497 浏览 0 评论 0原文

我不知道会发生什么。我运行 ApplicationTests 以查看 Tomcat 服务器是否在端口 8080 启动。当我检查运行此消息时,它会出现“C:\Program Files\Java\jdk-17\bin\java.exe... Process”已完成,退出代码为 0”。

我想在浏览器上显示 Spring Boot“测试”。当我在浏览器上输入 localhost:8080 时,此消息显示 “HTTP 状态 404 – 未找到 类型状态报告 说明 源服务器未找到目标资源的当前表示或不愿意透露该表示的存在。 Apache Tomcat/9.0.62"

我正在使用 IntelliJ IDEA 社区。我很好奇为什么 Tomcat 没有在我的 IDE 上启动?我缺少什么?我该如何解决这个问题?

在此处输入图像描述< /a>

输入图片此处描述

这是我的依赖项

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.2.RELEASE</version>
</parent>

<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>
    </dependency>
</dependencies>

<properties>
    <maven.compiler.source>17</maven.compiler.source>
    <maven.compiler.target>17</maven.compiler.target>
</properties>

I don't know what happens. I run the ApplicationTests to see if the Tomcat server is starting at port 8080. When I check the run this message it appears "C:\Program Files\Java\jdk-17\bin\java.exe... Process finished with exit code 0".

I want to display a spring boot "test" on the browser. When I type localhost:8080 on the browser this message shows
"HTTP Status 404 – Not Found
Type Status Report
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.
Apache Tomcat/9.0.62"

I'm using IntelliJ IDEA community. I'm curious why Tomcat is not starting on my IDE? What I'm missing? How can I solve this problem?

enter image description here

enter image description here

Here are my dependencies

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.2.RELEASE</version>
</parent>

<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>
    </dependency>
</dependencies>

<properties>
    <maven.compiler.source>17</maven.compiler.source>
    <maven.compiler.target>17</maven.compiler.target>
</properties>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

中二柚 2025-01-27 18:41:46

运行测试不会启动服务器并为您提供请求。您需要从IDE运行Spring Application Main类,或者如果使用Maven,则可以在终端中使用命令

MVN Spring-boot:Run

以下是您可以参考的一些文章一个简单的春季启动应用程序。

  1. https://wwwww.javatpoint.com/spring-boot-boot-boot-application
  2. =“ https://www.geeksforgeeks.org/how-to-to-create-a-basic-application-in-java-spring-boot/”操作方法创作 - a-basic-application in-java-spring-boot/

Running a test will not start the server and serve you with the requests. You need to run your spring application main class from the IDE or if you use maven then you can use the command in your terminal

mvn spring-boot:run

Below are some articles you can refer to get started with a simple spring boot application.

  1. https://www.javatpoint.com/spring-boot-application
  2. https://www.geeksforgeeks.org/how-to-create-a-basic-application-in-java-spring-boot/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文