问题1:如果pom.xml文件不能加载jar文件,可以把jar文件直接放到lib下,bulidpath ,add
问题2:出现MESSAGE Using platform encoding (GBK actually) to copy filtered resources, i.e. build is platform dependent这样的问题,在properties下添加 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>就能解决
问题3:编译的时候出现 No goals have been specified for this build.在pom.xml中添加 <build>
<defaultGoal>compile</defaultGoal>
</build> 就能解决