解决方案 »

  1.   

    1. 打开你的 Eclipse 的 Problems 视图,把 rzprweb 相关的错误挨着排地解决掉,就木有这个标记了。
    2. 如果有错误你自己解决不了,可以发帖,粘错误或者上图,大家帮你看。
      

  2.   

    不要动 eclipse.在控制台执行
    mvn eclipse:eclipse
    然后刷新 eclipse 的项目试试
    再不行就在 pom 中的 plugins 节点内加
    <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-eclipse-plugin</artifactId>
                    <version>2.9</version>
                    <configuration>
                        <additionalProjectnatures>
                            <projectnature>org.eclipse.jdt.core.javanature</projectnature>
                            <!-- 
                            <projectnature>org.eclipse.m2e.core.maven2Nature</projectnature>
                            <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
                             -->
                        </additionalProjectnatures>
                        <additionalBuildcommands>
                            <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>
                            <!-- 
                            <buildcommand>org.eclipse.m2e.core.maven2Builder</buildcommand>
                            <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
                             -->
                        </additionalBuildcommands>
                    </configuration>
                </plugin>然后再 
    mvn eclipse:clean
    mvn eclipse:eclipse