Spring中的@ConfigurationProperties不是springboot

时间:2018-07-19 14:04:06

标签: spring-mvc spring-boot

我们在Spring 5上有SpringMVC应用程序。springboot的@ConfigurationProperties会根据我们在applications.properties中设置的环境自动处理性能分析。我对springMVC使用springboot依赖项有一个限制。有什么方法可以利用Spring 5而不是springboot的功能?

1 个答案:

答案 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