项目有配置文件 报错 no active profile set,falling back to default profiles:default
时间: 2023-09-21 12:12:09 浏览: 124
配置文件的配置信息报错
这个报错信息意味着Spring没有找到任何激活的Profile,因此默认使用了"default" Profile。解决这个问题的方法是在启动时指定需要激活的Profile。
可以在启动脚本中添加`-Dspring.profiles.active=xxx`(xxx为需要激活的Profile名称)来指定激活的Profile,或者在应用的配置文件中使用`spring.profiles.active=xxx`来指定激活的Profile。
另外,也可以在代码中使用`@Profile`注解来指定某个Bean只在特定的Profile下生效。
阅读全文