# 项目场景:
运行 IDEA 时出现错误
# 问题描述:
java.lang.IllegalStateException: Error processing condition on org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration.propertySourcesPlaceholderConfigurer |
# 原因分析:
依赖
# 解决方案:
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-tomcat</artifactId> | |
<!-- <scope>provided</scope>--> | |
</dependency> |
在 pom.xml 文件中将 scope 注释
再加上
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>javax.servlet-api</artifactId> | |
<version>3.1.0</version> | |
</dependency> |