标签:component mod pom uil 方法 修改 web.xml contain web
用eclipse创建maven项目后,在Deployment Assembly中通过Add...->Java Build Path Entries导入Maven Dependencies时,发现Maven Dependencies不存在,可以通过如下方法解决:
打开.classpath文件,添加如下内容
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> <attributes> <attribute name="maven.pomderived" value="true"/> <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/> </attributes> </classpathentry>
注:修改Faceted Project时,点击Further configuration available…,弹出Modify Faceted Project窗口,此处是设置web.xml文件的路径,我们输入src/main/webapp。
maven项目中找不到Maven Dependencies解决办法
标签:component mod pom uil 方法 修改 web.xml contain web
原文地址:http://www.cnblogs.com/atai/p/5989109.html