spring boot 运行提示:No active profile set, falling back to default profiles: default
Posted YSHY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 运行提示:No active profile set, falling back to default profiles: default相关的知识,希望对你有一定的参考价值。
spring boot 运行提示:Process finished with exit code 1
经检查发现是由于在application.properties配置文件中将某些自定义配置项移除了,但是代码中没有删掉,导致以上错误发生。
例如,配置文件中原先存在:
jszs.path=/oracle/grgzpt-test/
代码中存在以下应用:
@Value("${jszs.path}")
private String jszsPath;
将配置文件中的jszs.path=/oracle/grgzpt-test/配置项删除,如果此时不移除@Value("${jszs.path}")则运行spring-boot应用会出现以上错误信息。
以上是关于spring boot 运行提示:No active profile set, falling back to default profiles: default的主要内容,如果未能解决你的问题,请参考以下文章
mybatis+spring boot, mapper 提示Could not autowire. No beans of … type found
Spring Boot获取spring.profiles.active:dev的值,也就是获取当前运行的环境配置
Spring Boot + flowable 快速实现工作流,好用到爆,Activiti 可以扔了。。