Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/393.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 将现有项目复制粘贴到eclipse后失败_Java_Mysql_Eclipse_Hibernate_Maven - Fatal编程技术网

Java 将现有项目复制粘贴到eclipse后失败

Java 将现有项目复制粘贴到eclipse后失败,java,mysql,eclipse,hibernate,maven,Java,Mysql,Eclipse,Hibernate,Maven,我正在尝试创建一个eshop,每次我完成某件事情时,我都会复制我的上一个项目并将其粘贴到同一个工作区(我在Eclipse中使用Maven、hibernate和MySQL) 今天,我有两个问题,我想得到你的帮助。我的上一个项目名为eMusicStore35。我无法运行此项目,因为我尚未完成我设计的所有方法 我在下一个名为eMusicStore37的项目中完成了它们(简单地复制eMusicStore35并用名称eMusicStore37粘贴它) 从图像中可以看到: eMusicStore35有一

我正在尝试创建一个eshop,每次我完成某件事情时,我都会复制我的上一个项目并将其粘贴到同一个工作区(我在Eclipse中使用Maven、hibernate和MySQL)

今天,我有两个问题,我想得到你的帮助。我的上一个项目名为eMusicStore35。我无法运行此项目,因为我尚未完成我设计的所有方法

我在下一个名为eMusicStore37的项目中完成了它们(简单地复制eMusicStore35并用名称eMusicStore37粘贴它)

从图像中可以看到:

  • eMusicStore35有一个感叹号(!)。这意味着我的代码中有错误吗
  • eMusicStore37在ApplicationContext.xml和SprignMVC-servlet.xml处有错误。当我转到这些文件时,错误是相同的:

    error occurred processing xml 'null'. see error log for more details
    
  • 我试图寻找解决这个问题的办法,但没有成功

    如果有人希望我上传更多文件以查找错误,请告诉我

    编辑

    第二个错误似乎已经解决了。我只想:

    1。右键单击项目

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:security="http://www.springframework.org/schema/security"
        xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd">
    
        <!-- Enable autowire -->
        <context:annotation-config />
        <context:component-scan base-package="com" />
    
        <mvc:annotation-driven />
    
        <mvc:resources mapping="/resources/**" location="/resources/" />
    
        <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
            <property name="driverClassName" value="com.mysql.jdbc.Driver" />
            <property name="url" value="jdbc:mysql://localhost:3306/myeshop" />
            <property name="username" value="root" />
            <property name="password" value="M@trix2014" />
        </bean>
    
        <!-- Session Factory Declaration -->
        <bean id="sessionFactory"
            class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
            <property name="dataSource" ref="dataSource" />
            <property name="packagesToScan" value="com.entities" />
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                    <prop key="hibernate.hbm2ddl.auto">update</prop>
                    <prop key="hibernate.show_sql">true</prop>
                    <prop key="hibernate.enable_lazy_load_no_trans">true</prop>
                    <!-- <prop key="hibernate.default_schema">myeshop</prop> -->
                    <prop key="format_sql">true</prop>
                    <prop key="use_sql_comments">true</prop>
    
    
                </props>
            </property>
        </bean>
    
        <tx:annotation-driven transaction-manager="transactionManager" />
    
        <bean id="transactionManager"
            class="org.springframework.orm.hibernate4.HibernateTransactionManager">
            <property name="sessionFactory" ref="sessionFactory" />
        </bean>
    
        <bean id="multipartResolver"
            class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <property name="maxUploadSize" value="1024000" />
        </bean>
    
        <security:http auto-config="true">
            <security:intercept-url pattern="/admin/**"
                access="ROLE_USER" />
            <security:form-login login-page="/login"
                default-target-url="/admin/" authentication-failure-url="/login?error"
                username-parameter="username" password-parameter="password" />
            <security:logout logout-success-url="/login?logout" />
        </security:http>
    
        <security:authentication-manager>
            <security:authentication-provider>
                <security:jdbc-user-service
                    data-source-ref="dataSource"
                    authorities-by-username-query="SELECT username, authority From authorities WHERE username = ?"
                    users-by-username-query="SELECT username, password, enabled FROM users WHERE username = ?" />
            </security:authentication-provider>
        </security:authentication-manager>
    </beans>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:mvc="http://www.springframework.org/schema/mvc"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
    
    
        <!-- My adds-on from previous tutorial -->
        <context:component-scan base-package="com" />
        <mvc:annotation-driven />
        <!-- My adds-on from previous tutorial -->
    
        <bean
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/views/" />
            <property name="suffix" value=".jsp" />
        </bean>
    
        <mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" />
    
        <tx:annotation-driven />
    
    </beans>
    
    2。Maven-->更新项目

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:security="http://www.springframework.org/schema/security"
        xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd">
    
        <!-- Enable autowire -->
        <context:annotation-config />
        <context:component-scan base-package="com" />
    
        <mvc:annotation-driven />
    
        <mvc:resources mapping="/resources/**" location="/resources/" />
    
        <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
            <property name="driverClassName" value="com.mysql.jdbc.Driver" />
            <property name="url" value="jdbc:mysql://localhost:3306/myeshop" />
            <property name="username" value="root" />
            <property name="password" value="M@trix2014" />
        </bean>
    
        <!-- Session Factory Declaration -->
        <bean id="sessionFactory"
            class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
            <property name="dataSource" ref="dataSource" />
            <property name="packagesToScan" value="com.entities" />
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                    <prop key="hibernate.hbm2ddl.auto">update</prop>
                    <prop key="hibernate.show_sql">true</prop>
                    <prop key="hibernate.enable_lazy_load_no_trans">true</prop>
                    <!-- <prop key="hibernate.default_schema">myeshop</prop> -->
                    <prop key="format_sql">true</prop>
                    <prop key="use_sql_comments">true</prop>
    
    
                </props>
            </property>
        </bean>
    
        <tx:annotation-driven transaction-manager="transactionManager" />
    
        <bean id="transactionManager"
            class="org.springframework.orm.hibernate4.HibernateTransactionManager">
            <property name="sessionFactory" ref="sessionFactory" />
        </bean>
    
        <bean id="multipartResolver"
            class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <property name="maxUploadSize" value="1024000" />
        </bean>
    
        <security:http auto-config="true">
            <security:intercept-url pattern="/admin/**"
                access="ROLE_USER" />
            <security:form-login login-page="/login"
                default-target-url="/admin/" authentication-failure-url="/login?error"
                username-parameter="username" password-parameter="password" />
            <security:logout logout-success-url="/login?logout" />
        </security:http>
    
        <security:authentication-manager>
            <security:authentication-provider>
                <security:jdbc-user-service
                    data-source-ref="dataSource"
                    authorities-by-username-query="SELECT username, authority From authorities WHERE username = ?"
                    users-by-username-query="SELECT username, password, enabled FROM users WHERE username = ?" />
            </security:authentication-provider>
        </security:authentication-manager>
    </beans>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:mvc="http://www.springframework.org/schema/mvc"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
    
    
        <!-- My adds-on from previous tutorial -->
        <context:component-scan base-package="com" />
        <mvc:annotation-driven />
        <!-- My adds-on from previous tutorial -->
    
        <bean
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/views/" />
            <property name="suffix" value=".jsp" />
        </bean>
    
        <mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" />
    
        <tx:annotation-driven />
    
    </beans>
    
    我已多次尝试此,现在一切正常,因此无法理解之前的错误

    对于第一个错误,我上传了下一张图片

    但是现在,我看不到这个项目中有任何错误

    我的xml文件是:

    ApplicationContext

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:security="http://www.springframework.org/schema/security"
        xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd">
    
        <!-- Enable autowire -->
        <context:annotation-config />
        <context:component-scan base-package="com" />
    
        <mvc:annotation-driven />
    
        <mvc:resources mapping="/resources/**" location="/resources/" />
    
        <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
            <property name="driverClassName" value="com.mysql.jdbc.Driver" />
            <property name="url" value="jdbc:mysql://localhost:3306/myeshop" />
            <property name="username" value="root" />
            <property name="password" value="M@trix2014" />
        </bean>
    
        <!-- Session Factory Declaration -->
        <bean id="sessionFactory"
            class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
            <property name="dataSource" ref="dataSource" />
            <property name="packagesToScan" value="com.entities" />
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                    <prop key="hibernate.hbm2ddl.auto">update</prop>
                    <prop key="hibernate.show_sql">true</prop>
                    <prop key="hibernate.enable_lazy_load_no_trans">true</prop>
                    <!-- <prop key="hibernate.default_schema">myeshop</prop> -->
                    <prop key="format_sql">true</prop>
                    <prop key="use_sql_comments">true</prop>
    
    
                </props>
            </property>
        </bean>
    
        <tx:annotation-driven transaction-manager="transactionManager" />
    
        <bean id="transactionManager"
            class="org.springframework.orm.hibernate4.HibernateTransactionManager">
            <property name="sessionFactory" ref="sessionFactory" />
        </bean>
    
        <bean id="multipartResolver"
            class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <property name="maxUploadSize" value="1024000" />
        </bean>
    
        <security:http auto-config="true">
            <security:intercept-url pattern="/admin/**"
                access="ROLE_USER" />
            <security:form-login login-page="/login"
                default-target-url="/admin/" authentication-failure-url="/login?error"
                username-parameter="username" password-parameter="password" />
            <security:logout logout-success-url="/login?logout" />
        </security:http>
    
        <security:authentication-manager>
            <security:authentication-provider>
                <security:jdbc-user-service
                    data-source-ref="dataSource"
                    authorities-by-username-query="SELECT username, authority From authorities WHERE username = ?"
                    users-by-username-query="SELECT username, password, enabled FROM users WHERE username = ?" />
            </security:authentication-provider>
        </security:authentication-manager>
    </beans>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:mvc="http://www.springframework.org/schema/mvc"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
    
    
        <!-- My adds-on from previous tutorial -->
        <context:component-scan base-package="com" />
        <mvc:annotation-driven />
        <!-- My adds-on from previous tutorial -->
    
        <bean
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/views/" />
            <property name="suffix" value=".jsp" />
        </bean>
    
        <mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" />
    
        <tx:annotation-driven />
    
    </beans>
    
    
    org.hibernate.dialogue.mysqldialogue
    更新
    真的
    真的
    真的
    真的
    
    springmvcservlet

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:security="http://www.springframework.org/schema/security"
        xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd">
    
        <!-- Enable autowire -->
        <context:annotation-config />
        <context:component-scan base-package="com" />
    
        <mvc:annotation-driven />
    
        <mvc:resources mapping="/resources/**" location="/resources/" />
    
        <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
            <property name="driverClassName" value="com.mysql.jdbc.Driver" />
            <property name="url" value="jdbc:mysql://localhost:3306/myeshop" />
            <property name="username" value="root" />
            <property name="password" value="M@trix2014" />
        </bean>
    
        <!-- Session Factory Declaration -->
        <bean id="sessionFactory"
            class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
            <property name="dataSource" ref="dataSource" />
            <property name="packagesToScan" value="com.entities" />
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                    <prop key="hibernate.hbm2ddl.auto">update</prop>
                    <prop key="hibernate.show_sql">true</prop>
                    <prop key="hibernate.enable_lazy_load_no_trans">true</prop>
                    <!-- <prop key="hibernate.default_schema">myeshop</prop> -->
                    <prop key="format_sql">true</prop>
                    <prop key="use_sql_comments">true</prop>
    
    
                </props>
            </property>
        </bean>
    
        <tx:annotation-driven transaction-manager="transactionManager" />
    
        <bean id="transactionManager"
            class="org.springframework.orm.hibernate4.HibernateTransactionManager">
            <property name="sessionFactory" ref="sessionFactory" />
        </bean>
    
        <bean id="multipartResolver"
            class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
            <property name="maxUploadSize" value="1024000" />
        </bean>
    
        <security:http auto-config="true">
            <security:intercept-url pattern="/admin/**"
                access="ROLE_USER" />
            <security:form-login login-page="/login"
                default-target-url="/admin/" authentication-failure-url="/login?error"
                username-parameter="username" password-parameter="password" />
            <security:logout logout-success-url="/login?logout" />
        </security:http>
    
        <security:authentication-manager>
            <security:authentication-provider>
                <security:jdbc-user-service
                    data-source-ref="dataSource"
                    authorities-by-username-query="SELECT username, authority From authorities WHERE username = ?"
                    users-by-username-query="SELECT username, password, enabled FROM users WHERE username = ?" />
            </security:authentication-provider>
        </security:authentication-manager>
    </beans>
    
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:mvc="http://www.springframework.org/schema/mvc"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
    
    
        <!-- My adds-on from previous tutorial -->
        <context:component-scan base-package="com" />
        <mvc:annotation-driven />
        <!-- My adds-on from previous tutorial -->
    
        <bean
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/views/" />
            <property name="suffix" value=".jsp" />
        </bean>
    
        <mvc:resources mapping="/resources/**" location="/WEB-INF/resources/" />
    
        <tx:annotation-driven />
    
    </beans>
    
    
    
    pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <groupId>com.spring</groupId>
        <artifactId>SpringMVC</artifactId>
        <packaging>war</packaging>
        <version>0.0.1-SNAPSHOT</version>
        <name>SpringMVC Maven Webapp</name>
        <url>http://maven.apache.org</url>
    
        <properties>
            <java-version>1.7</java-version>
            <org.springframework-version>4.2.6.RELEASE</org.springframework-version>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>3.8.1</version>
                <scope>test</scope>
            </dependency>
    
            <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>javax.servlet-api</artifactId>
                <version>3.1.0</version>
            </dependency>
    
            <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>jstl</artifactId>
                <version>1.2</version>
            </dependency>
    
            <!-- -->
    
            <!-- http://mvnrepository.com/artifact/org.springframework/spring-context-support -->
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-context-support</artifactId>
                <version>4.2.6.RELEASE</version>
            </dependency>
    
    
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-webmvc</artifactId>
                <version>4.2.6.RELEASE</version>
            </dependency>
    
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-orm</artifactId>
                <version>4.2.6.RELEASE</version>
            </dependency>
    
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-tx</artifactId>
                <version>4.2.6.RELEASE</version>
            </dependency>
    
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-web</artifactId>
                <version>4.2.6.RELEASE</version>
            </dependency>
    
    
            <dependency>
                <groupId>commons-dbcp</groupId>
                <artifactId>commons-dbcp</artifactId>
                <version>1.4</version>
            </dependency>
    
            <dependency>
                <groupId>mysql</groupId>
                <artifactId>mysql-connector-java</artifactId>
                <version>5.1.36</version>
            </dependency>
    
    
            <dependency>
                <groupId>org.codehaus.jackson</groupId>
                <artifactId>jackson-mapper-asl</artifactId>
                <version>1.9.10</version>
            </dependency>
    
            <dependency>
                <groupId>com.google.code.gson</groupId>
                <artifactId>gson</artifactId>
                <version>2.3</version>
            </dependency>
    
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-core</artifactId>
                <version>4.1.0.Final</version>
            </dependency>
    
    
            <dependency>
                <groupId>org.hibernate.javax.persistence</groupId>
                <artifactId>hibernate-jpa-2.0-api</artifactId>
                <version>1.0.0.Final</version>
            </dependency>
    
            <!-- Upload photos -->
            <dependency>
                <groupId>commons-fileupload</groupId>
                <artifactId>commons-fileupload</artifactId>
                <version>1.2.2</version>
            </dependency>
            <dependency>
                <groupId>commons-io</groupId>
                <artifactId>commons-io</artifactId>
                <version>2.4</version>
            </dependency>
            <!-- This is pre-defined from me!! So comment it!!!!!! -->
            <!-- <dependency>
                <groupId>javax.servlet</groupId>
                <artifactId>servlet-api</artifactId>
                <version>2.5</version>
                <scope>provided</scope>  maybe error!!! 
            </dependency> -->
    
            <!-- Validation -->
            <dependency>
                <groupId>org.hibernate</groupId>
                <artifactId>hibernate-validator</artifactId>
                <version>4.2.0.Final</version>
            </dependency>
            <dependency>
                <groupId>javax.validation</groupId>
                <artifactId>validation-api</artifactId>
                <version>1.0.0.GA</version>
            </dependency>
    
            <!-- Sping Security Authentication-->
            <dependency>
                <groupId>org.springframework</groupId>
                <artifactId>spring-context</artifactId>
                <version>4.2.6.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-core</artifactId>
                <version>3.1.4.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-web</artifactId>
                <version>3.1.4.RELEASE</version>
            </dependency>
            <dependency>
                <groupId>org.springframework.security</groupId>
                <artifactId>spring-security-config</artifactId>
                <version>3.1.4.RELEASE</version>
            </dependency>
    
            <!-- These are for shopping cart! -->
            <dependency>
                <groupId>com.fasterxml.jackson.core</groupId>
                <artifactId>jackson-core</artifactId>
                <version>2.5.1</version>
            </dependency>
            <dependency>
                <groupId>com.fasterxml.jackson.core</groupId>
                <artifactId>jackson-annotations</artifactId>
                <version>2.5.1</version>
            </dependency>
            <dependency>
                <groupId>com.fasterxml.jackson.core</groupId>
                <artifactId>jackson-databind</artifactId>
                <version>2.5.1</version>
            </dependency>
    
    
    
    
    
    
        </dependencies>
        <build>
            <finalName>SpringMVC</finalName>
        </build>
    </project>
    
    
    4.0.0
    com.spring
    SpringMVC
    战争
    0.0.1-快照
    springmvcmavenwebapp
    http://maven.apache.org
    1.7
    4.2.6.1发布
    朱尼特
    朱尼特
    3.8.1
    测试
    javax.servlet
    javax.servlet-api
    3.1.0
    javax.servlet
    jstl
    1.2
    org.springframework
    spring上下文支持
    4.2.6.1发布
    org.springframework
    SpringWebMVC
    4.2.6.1发布
    org.springframework
    春季甲虫
    4.2.6.1发布
    org.springframework
    德克萨斯州春季
    4.2.6.1发布
    org.springframework
    弹簧网
    4.2.6.1发布
    公共dbcp
    公共dbcp
    1.4
    mysql
    mysql连接器java
    5.1.36
    org.codehaus.jackson
    杰克逊地图绘制者
    1.9.10
    com.google.code.gson
    格森
    2.3
    org.hibernate
    冬眠核心
    4.1.0.1最终版本
    org.hibernate.javax.persistence
    hibernate-jpa-2.0-api
    1.0.0.1决赛
    文件上传
    文件上传
    1.2.2
    公地io
    公地io
    2.4
    org.hibernate
    休眠验证器
    4.2.0.4最终版本
    javax.validation
    验证api
    1.0.0.GA
    org.springframework
    spring上下文
    4.2.6.1发布
    org.springframework.security
    spring安全内核
    3.1.4.1发布
    org.springframework.security
    spring安全网
    3.1.4.1发布
    org.springframework.security
    spring安全配置
    3.1.4.1发布
    com.fasterxml.jackson.core
    杰克逊核心
    2.5.1
    com.fasterxml.jackson.core
    杰克逊注释
    2.5.1
    com.fasterxml.jackson.core
    杰克逊数据绑定
    2.5.1
    SpringMVC
    
    从您共享的snipt中可以看出问题不在java代码中,而在xml中,这就是project显示感叹号的原因。您可以在applicationContext.xml和SpringMVC-Servlet.xml中看到红色的x标记


    此外,您只需在项目目录中选择并使用新名称粘贴项目即可克隆项目,这样您就可以并行工作,无需每次都执行复制粘贴。处理您想处理的项目。

    感叹号(!)主要定义一些类路径问题。使用maven清理和构建。我右键单击我的项目,选择maven,更新项目。但一切都没有改变。对于这个感叹号(!)我还能做些什么?“这意味着我的代码中有错误?”这些错误是什么?仅仅说你有错误是完全没有用的。如果您不知道在哪里可以找到它们,请查看
    问题
    视图(
    窗口
    显示视图
    问题
    )。我刚刚编辑了我的文章。共享两个xml文件内容,以便查看并帮助您解决。感叹号:请参阅问题和标记视图中的。如果可能的话,分享这些