如何显示 Spring Boot“测试”当我使用@GetMapping时,在浏览器上并在IntelliJ IDEA上运行Tomcat服务器?
我不知道会发生什么。我运行 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 上启动?我缺少什么?我该如何解决这个问题?
这是我的依赖项
<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?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
运行测试不会启动服务器并为您提供请求。您需要从IDE运行Spring Application Main类,或者如果使用Maven,则可以在终端中使用命令
MVN Spring-boot:Run
以下是您可以参考的一些文章一个简单的春季启动应用程序。
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.