更新:附加了pom.xml和application.property以及更多错误/警告消息
嗨,我是Spring Boot的新手,刚刚在Udemy参加了一些课程。
在完成课程后,我通过spring.io创建了一个初学者项目,并添加了执行器和Hal浏览器依赖项,包括Dev工具。
跑了这个并尝试转到localhost:8080 / application& /浏览器,但我得到404。
我做错了什么。
我写了一个简单的bean,它返回一个硬编码的值,然后打印出来,我更改了值以测试Dev工具,它没有重新启动资源,我不得不杀死并重新启动应用程序以反映新的更改。
如何查看问题?
如果需要,我可以提供Pom.xml和控制台抓取。
请帮忙。
更新:我不知道以下内容的重要性,所以将它放在这里。
在XML编辑器中,hal用红色下划线,悬停时带有以下消息
托管版本为3.0.5.RELEASE工件在org.springframework.data:spring-data-releasetrain:Kay-SR5
中管理在XML编辑器中,devtools带有红色下划线,悬停时带有以下消息
托管版本为2.0.0.RELEASE工件在org.springframework.boot中管理:spring-boot-dependencies:2.0.0.RELEASE
<groupId>com.myoxigen.training.springboot</groupId>
<artifactId>library</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>library</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<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-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-browser</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
应用程序属性
logging.level.org.springframework = DEBUG
management.security.enabled =假
答案 0 :(得分:1)
Spring Boot 2.2 应用应该使用 spring-data-rest-hal-explorer 而不是 spring-data-rest-hal-browser
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-explorer</artifactId>
</dependency>
答案 1 :(得分:0)
注意:此答案基于Spring Boot 2(路径和属性已从版本1更改)。
你的pom.xml
看起来很好。获得&#34; HAL浏览器&#34;要与执行器一起使用,您应该有首发:web
,actuator
和Rest Repositories HAL Browser
。我建议使用Spring Initializr作为构建初始有效项目结构的好方法。
执行器的默认路径为/actuator
。例如,健康状况为/actuator/health
。
要在HAL浏览器中查看执行器端点,请转到/browser/index.html#/actuator
。
您可以通过设置以下内容来更改application.properties
中的执行器路径。
management.endpoints.web.base-path=/actuator
要运行服务器,请使用以下控制台命令:
./mvnw clean spring-boot:run
如果项目中有DevTools
,则类路径中文件的更改将重新启动服务器。请参阅我关于如何利用DevTools here的进一步评论。
以下是单页上的相关文档,以便于搜索:
答案 2 :(得分:0)
您不是在28分钟内学习课程吗? =)无论如何,当我学习Spring Boot for Beginners in 10 Steps课程时,访问http://localhost:8080/application
时都会遇到相同的问题。
对于http://localhost:8080/browser
,我得到了一个简单的json
:
{"cause":null,"message":"Fragment must not be empty"}
在pom.xml
中,我与您所概述的依赖项相同。
有些谷歌搜索使我进入了this文章。在名为“ II。Hal浏览器”的部分中,您可以看到一个屏幕截图,其中在浏览器中的链接为http://localhost:8080/browser/index.html#
。如果使用此链接,则Hal Browser应该会神奇地出现。
所以/index.html#
是您错过的唯一拼图。
注意:以上方法适用于Spring Boot版本2.1.7
编辑:尽管Hal Browser本身可以使用上述方法,但仍未显示执行器端点。而且DevTools也不适合我。
答案 3 :(得分:0)
要启用执行器,请将其添加到属性文件(application.properties)
management.endpoints.web.exposure.include=*
重新启动Spring Boot应用程序,并使用以下命令访问执行器端点:
http://localhost:8080/actuator/
还可以使用以下方法监视应用程序的运行状况:
http://localhost:8080/actuator/health
需要依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
答案 4 :(得分:0)
Add this Dependency:
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-browser</artifactId>
<version>3.3.5.RELEASE</version>
</dependency>`enter code here`
And then go to link:
http://localhost:8080/browser/index.html#