赞
踩
1.常见问题,jar明明存在项目中,但是引用不到
处理方法:pom文件引入maven插件
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
<compilerArguments>
<extdirs>${project.basedir}/src/main/webapp/WEB-INF/lib</extdirs>
</compilerArguments>
</configuration>
</plugin>
代码结构如下:
2.以上添加之后基本就可以了,如果插件添加后依旧报错,进行以下设置
选择自己项目中的lib目录添加即可。
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。