Maven常见错误

1:运行Maven项目时出现invalid LOC header (bad signature)错误,Tomcat不能正常启动

因为本地仓库的jar包未下载完成


p1.png

解决方式:删除重新下载

2:Missing artifact com.github.pagehelper:pagehelper:jar:3.4.2-fix

jar包收费,或者无法连上国外网


p2.png

解决方法:降低版本

3:Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.zq.e3.mapper.TbItemMapper.selectByPrimaryKey

原因是因为mapper.java和mapper.xml文件不在一个文件夹。

解决方法:在resources下创建同名文件夹,放入xml文件,或者配置:


p3.png

4:卡在log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

事实上项目已经报错了,这时候需要添加log4j.properties文件才能看见报错信息

你可能感兴趣的:(Maven常见错误)