No active profile set, falling back to 1 default profile: “default“
时间: 2023-11-29 19:46:15 浏览: 71
1238: UserWarning: findfont: Font family [‘sans-serif’] not found. Falling back to DejaVu Sans.
这个问题通常出现在使用Spring Boot时,因为Spring Boot默认使用application.properties或application.yml文件来配置应用程序。如果没有指定active profile,Spring Boot将使用默认的default profile。如果没有找到default profile,就会出现“No active profile set, falling back to default profiles: default”这个错误。
解决这个问题的方法是在应用程序的配置文件中指定active profile。例如,在application.yml文件中添加以下内容:
```yaml
spring:
profiles:
active: dev
```
这将指定dev profile作为active profile。如果你想使用其他的profile,只需要将“dev”替换为你想要使用的profile名称即可。
阅读全文