Web项目lib下的jar包无法自动加载
Posted 野香蕉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Web项目lib下的jar包无法自动加载相关的知识,希望对你有一定的参考价值。
Web项目复制到lib下的jar包不自动加载
打开项目的Java source目录,发现没有web app libraries目录
解决:
打开项目源码,打开.classpath文件,内容如下
<classpath>
<classpathentrykind="src" path="src"/>
<classpathentrykind="con"path="melibrary.com.genuitec.eclipse.j2eedt.core.MYECLIPSE_JAVAEE_5_CONTAINER"/>
<classpathentry kind="con"path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attributename="owner.project.facets" value="java"/>
</attributes>
</classpathentry>
<classpathentrykind="output" path="WebRoot/WEB-INF/classes"/>
</classpath>
对比可以自动加载的项目的.classpath文件
<classpath>
<classpathentrykind="src" path="src"/>
<classpathentrykind="con" path="com.genuitec.eclipse.j2eedt.core.J2EE14_CONTAINER"/>
<classpathentrykind="con" path="org.eclipse.jdt.USER_LIBRARY/MyJars"/>
<classpathentrykind="con"path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attributename="owner.project.facets" value="java"/>
</attributes>
</classpathentry>
<classpathentrykind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentrykind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
<classpathentrykind="output" path="WebRoot/WEB-INF/classes"/>
</classpath>
添加这一句:<classpathentry kind="con"path="org.eclipse.jst.j2ee.internal.web.container"/> 重启eclipse即可
以上是关于Web项目lib下的jar包无法自动加载的主要内容,如果未能解决你的问题,请参考以下文章
myeclipse中Web App Libraries无法自动识别lib下的jar包
MyEclipse中怎么让jar包自动导入到WEB-INF/lib下,而不是以外部导入的方式导入项目中