本来是想用springboot的热部署功能的,所以在pom.xml中导入了
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
然后没有做有关于它的任何操作了,于是,它是不起作用的,,,所以我没有在意
今天偶然的机会,启动springboot报错了
2017-04-10 16:23:34.188 [ restartedMain:6429 ] - [ WARN ] Bean creation exception on non-lazy FactoryBean type check: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'memberRightMapper' defined in file [E:\operation\target\classes\com\xin\base\mapper\MemberRightMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [org/mybatis/spring/boot/autoconfigure/MybatisAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.lang.NullPointerException
控制台一直循环输出这个,查了半天,终于找到是加了这个包的问题,于是我就想着反正它原来也没有起作用,那就把它删了呗,可是虽然我在配置文件里pom.xml里面把它删了,可是这个错一直有,不肯消失,最后没有办法,删掉了本地仓库的这个包,问题终于解决。后来才知道idea没有默认包同步,也就是说,如果你只在配置里加了jar包,那么它是不起作用的,同样,删除也不起作用。但是它是可以设置自动包同步的,如下
如果不设置自动同步,就需要手动同步,在pom.xml文件右键
这样,问题就完美解决了