Spring 引导执行器不工作 - Whitelabel 错误页面
Spring Boot Actuator not working- Whitelabel Error Page
Spring Boot Actuator 不适用于 rest-full 应用程序,在浏览器上显示 Whitelabel 错误页面,在控制台日志中显示以下错误。
org.springframework.web.servlet.NoHandlerFoundException: No handler found for GET /actuator/health
在 maven 依赖项下添加。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
我交叉检查,jar 文件在 class 路径中可用。
Spring 启动应用程序版本
<version>2.4.1</version>
在 application.properties 文件中添加了属性
management.endpoints.enabled-by-default=true
management.endpoint.info.enabled=true
management.security.enabled=false
management.endpoints.web.exposure.include=*
spring.mvc.throw-exception-if-no-handler-found=true
无法使用以下 URL
访问执行器
http://localhost:8090/actuator/health
http://localhost:8090/actuator/
http://localhost:8090/health/
日志
WARN IN-WKS-435 [nio-8090-exec-1] o.s.w.s.PageNotFound : No mapping for GET /actuator/health
WARN IN-WKS-435 [nio-8090-exec-1] o.s.w.s.PageNotFound : No handler found for GET /actuator/health
WARN IN-WKS-435 [nio-8090-exec-1] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.servlet.NoHandlerFoundException: No handler found for GET /actuator/health]
注意:除此之外,整个应用程序运行良好。
如果我需要在我们的应用程序中添加任何其他配置,请提出建议。
Spring 如果在 IDE(IntelliJ 或 Eclipse)中 运行ning,则无法获取引导执行器端点。
我尝试在 cmd 上使用以下命令(IDE 之外)运行 jar,它对我有用。
c:\workspace\demo\target\java -jar demo-spring-boot-project.jar
而且我能够访问下面 URL
http://localhost:8090/actuator/health
在通过 InteliJ IDEA 运行 应用程序时也遇到过这个问题。
结果我添加了 spring-boot-starter-actuator 依赖但没有告诉 Maven 重新加载项目。
右击pom.xml文件,选择Maven->Reload project,解决。
*在这种情况下,我看到 jar 文件存在于您的类路径中,因此您的问题与我的不同。
留下此评论可能会对其他人有所帮助。
我在 运行 通过 IntelliJ IDE 项目时遇到了同样的问题。
我在 IntelliJ IDE.
中执行 Invalidate Cache & Restart
后解决了
转到 File
-> ``使缓存无效`。
出现“使缓存无效”对话框。可以根据自己的项目 select
Spring Boot Actuator 不适用于 rest-full 应用程序,在浏览器上显示 Whitelabel 错误页面,在控制台日志中显示以下错误。
org.springframework.web.servlet.NoHandlerFoundException: No handler found for GET /actuator/health
在 maven 依赖项下添加。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
我交叉检查,jar 文件在 class 路径中可用。
Spring 启动应用程序版本
<version>2.4.1</version>
在 application.properties 文件中添加了属性
management.endpoints.enabled-by-default=true
management.endpoint.info.enabled=true
management.security.enabled=false
management.endpoints.web.exposure.include=*
spring.mvc.throw-exception-if-no-handler-found=true
无法使用以下 URL
访问执行器http://localhost:8090/actuator/health
http://localhost:8090/actuator/
http://localhost:8090/health/
日志
WARN IN-WKS-435 [nio-8090-exec-1] o.s.w.s.PageNotFound : No mapping for GET /actuator/health
WARN IN-WKS-435 [nio-8090-exec-1] o.s.w.s.PageNotFound : No handler found for GET /actuator/health
WARN IN-WKS-435 [nio-8090-exec-1] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.servlet.NoHandlerFoundException: No handler found for GET /actuator/health]
注意:除此之外,整个应用程序运行良好。
如果我需要在我们的应用程序中添加任何其他配置,请提出建议。
Spring 如果在 IDE(IntelliJ 或 Eclipse)中 运行ning,则无法获取引导执行器端点。
我尝试在 cmd 上使用以下命令(IDE 之外)运行 jar,它对我有用。
c:\workspace\demo\target\java -jar demo-spring-boot-project.jar
而且我能够访问下面 URL
http://localhost:8090/actuator/health
在通过 InteliJ IDEA 运行 应用程序时也遇到过这个问题。 结果我添加了 spring-boot-starter-actuator 依赖但没有告诉 Maven 重新加载项目。
右击pom.xml文件,选择Maven->Reload project,解决。
*在这种情况下,我看到 jar 文件存在于您的类路径中,因此您的问题与我的不同。 留下此评论可能会对其他人有所帮助。
我在 运行 通过 IntelliJ IDE 项目时遇到了同样的问题。 我在 IntelliJ IDE.
中执行Invalidate Cache & Restart
后解决了
转到 File
-> ``使缓存无效`。
出现“使缓存无效”对话框。可以根据自己的项目 select