IntelliJ IDEA运行Spring Boot异常

本来在eclipse上做开发,然后想试一下IntelliJ IDEA怎么样,通过Application.class的方式启动,居然报异常:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘updateCheckListener’ defined in URL [jar:file:/D:/JAVAEE/jdk1.8.0_91/jre/lib/deploy.jar!/com/oracle/deploy/update/UpdateCheckListener.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.oracle.deploy.update.UpdateCheckListener]: Specified class is an interface

大致意思是说创建updateCheckListener这个bean的时候,发现它是个interface。
然后检查了一下这个updateCheckListener bean,尼玛居然在居然在jdk的deploy.jar里面,我eclipse上的项目里面都没有引入这个jar包的。对比eclipse引入的jdk的jar包,发现多了4个,手动把这4个jar包删掉,问题解决。
最终的解决方案很容易,但是却困扰了我半天啊,坑爹,让我对IntelliJ IDEA的好感大大下降啊!!

你可能感兴趣的:(工作记录,IntelliJ,idea,springboot)