项目没有创建interface文件的时候启动是正常的,项目中如果新建一个接口文件如图中的IUserService,启动项目报错:
Related cause: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'IUserService' defined in file [E:\fqtx-springboot\fqtx\target\classes\net\webloo\service\IUserService.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'druidDataSource' defined in class path resource [net/webloo/utils/config/DruidAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.sql.DataSource]: Factory method 'druidDataSource' threw exception; nested exception is java.lang.IllegalArgumentException: maxActive can't not set zero
也就是说只有项目里存在一个自定义接口文件,获取配置文件就获取不到,这是啥原因
maxActivecan'tnotsetzero,这是最后的原因
我问题里说了啊,如果加了interface文件,配置文件获取不到maxActive肯定是0啊,如果项目里没有写interface文件,就没有这个问题,可以获取配置文件的配置属性@Component
加上这个呢
找到问题了,是因为我pom.xml里面加了spring-boot-devtools这个热部署依赖,这个依赖删了就没事了,但是这样我就用不了热部署了啊。。版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。