我们在Spring 5上有SpringMVC应用程序。springboot的@ConfigurationProperties会根据我们在applications.properties中设置的环境自动处理性能分析。我对springMVC使用springboot依赖项有一个限制。有什么方法可以利用Spring 5而不是springboot的功能?
答案 0 :(得分:0)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>xxxx</version>
</dependency>
您可以在spring项目中的maven pom片段上方添加依赖项。
我的项目是spring项目,但没有springboot。同时,我也想使用@EnableConfigurationProperties
功能。因此,我只需在项目中添加spring-boot-autoconfigure
。