1.tomcat7插件报错 Unable to process Jar entry [module-info.class] from Jar [jar:file
解决方法:进入Maven仓库里找到这个jar包,然后用解压软件打开(不要解压),删除module-info.class
2.无法读取到resouces下的spring-mvc.xml
org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [spring-mvc.xml]
解决方法:在web.xml中设置classpath
3.log4j:WARN No appenders could be found for logger
在编译的时候,idea没有将resources的配置文件复制到target
解决方法:在pom.xml文件中使用以下代码
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
</build>
==========================================更新===========================
从新设置了一下,直接解决上文2,3问题,其他设置不变
4.在写Mybatis时遇到的问题:No constructor found in 包名+类名
重写了构造函数后要写一个默认的、空的构造函数。mybatis、spring这些大量用到反射的框架都会需要调用默认的构造函数的。如果重写了构造函数一定要补写一个默认的构造函数。