弹簧靴执行器,不带弹簧启动器转换过程
我一直在研究Spring/Spring MVC应用程序,我希望添加性能指标。我遇到过弹簧靴执行器,它看起来像一个很好的解决方案。但是,我的应用程序不是Spring Boot应用程序。我的应用程序在传统的容器Tomcat 8中运行。
我添加了以下依赖项
// Spring Actuator
compile "org.springframework.boot:spring-boot-starter-actuator:1.2.3.RELEASE"
我创建了以下配置类。
@EnableConfigurationProperties
@Configuration
@EnableAutoConfiguration
@Profile(value = {"dev", "test"})
@Import(EndpointAutoConfiguration.class)
public class SpringActuatorConfig {
}
我甚至按照StackOverflow上另一篇文章的建议,在每个配置类上添加。然而,这并没有做任何事情。仍未创建终结点并返回 404。@EnableConfigurationProperties