springboot(7)配置文件自动映射

SpringBoot注解配置文件自动映射到属性和实体类

  • Controller上面配置
@Component
@PropertySource({"classpath:application.properties"})
@ConfigurationProperties
  • 属性上面配置
@Value("${test.name}")

猜你喜欢

转载自www.cnblogs.com/xeclass/p/12635245.html