我无法使Actuator与Spring Boot + Jersey框架一起使用。我在Spring 1.5.3.RELEASE中尝试了以下方法-
在pom.xml中包含以下依赖项
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
通过在application.properties
文件中添加以下配置,将Jersey应用程序路径更改为“ / api”。
spring.jersey.application-path = api
请告知如何完成此工作。我也愿意与Spring 2.x一起使用