用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。
