今天在使用SpringBoot的时候,出现了下面的问题:
Property 'spring.profiles' imported from location 'class path resource [application.yml]' is invalid and should be replaced with 'spring.config.activate.on-profile' [origin: class path resource [application.yml] - 21:13]
意思是application.yml
配置文件中的spring.profiles
属性不再被推荐使用,并且应该被替换为spring.config.activate.on-profile,所以只要将我们application.yml中的spring.profiles修改成spring.config.activate.on-profile即可