org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'shiroConfig': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.redis.type' in value "${spring.redis.type}"
时间: 2023-08-14 20:10:11 浏览: 192
spring配置文件说明.doc
这个错误是因为Spring无法解析属性占位符`${spring.redis.type}`,可能是因为没有在配置文件中定义该属性或者属性的值为空。你需要检查配置文件中是否定义了该属性,如果没有,则需要添加该属性并设置属性值,如果已经定义了该属性,检查属性的值是否正确。另外,还需要确认你是否已经正确地将配置文件加载到Spring容器中。
阅读全文