我有一個正在運行的Springboot應用程序,它服務於URL http://localhost:8081/topics
,並按預期返回了我的JSON響應。春季啓動執行器「/健康」不起作用
我加了執行機構的依賴 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <scope>test</scope> </dependency>
建議但當我打http://localhost:8081/health
它不會給預期的結果。它說
{ "timestamp": 1497952368055, "status": 404, "error": "Not Found", "message": "No message available", "path": "/health" }
春天啓動的版本是1.5.4.RELEASE。和Java 1.8 我需要做什麼額外的設置?