eclipse项目转maven项目后,没有自动添加maven依赖项的解决办法

在.classpath文件中,新增一下内容再刷新项目即可(加载<classpath></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>

 

Author: bkdwei