cvc-complex-type.2.4.c:匹配的通配符是严格的,但是对元素'tx:annotation-driven'没有声明。

问题描述:

我将使用spring mvc和hibernate。 当我启动服务器时,“org.hibernate.HibernateException:无法获取当前线程的事务同步会话”错误发生。 所以,我搜索了什么问题。 我找到了一些东西。一个是使用cvc-complex-type.2.4.c:匹配的通配符是严格的,但是对元素'tx:annotation-driven'没有声明。

<tx:annotation-driven transaction-manager="transactionManager" />. 

我加了。但是,发生了"The prefix "tx" for element "tx:annotation-driven" is not bound."错误。 因此,我再次搜索答案并获得答案,然后应用它。 这就是使用xmlns:tx="http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd"。 但是, - cvc-complex-type.2.4.c:匹配通配符是严格的,但是对于元素'tx:annotation- driven'没有发现声明。并且无法找到架构命名空间'http:// www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd'的元素'tx:annotation-driven'的Spring NamespaceHandler发生错误。 当我搜索答案时,它是递归重复的。 我该如何解决这个问题?帮我...

这是我的servlet-context.xml。

<?xml version="1.0" encoding="UTF-8"?> 
<beans:beans xmlns="http://www.springframework.org/schema/mvc" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xsi:schemaLocation="http://www.springframework.org/schema/mvc 
    http://www.springframework.org/schema/mvc/spring-mvc.xsd 
     http://www.springframework.org/schema/beans 
     http://www.springframework.org/schema/beans/spring-beans.xsd 
     http://www.springframework.org/schema/context 
     http://www.springframework.org/schema/context/spring-context.xsd" 
    xmlns:tx="http://www.springframework.org/schema/tx 
     http://www.springframework.org/schema/tx/spring-tx-3.1.xsd"> 

    <!-- DispatcherServlet Context: defines this servlet's request-processing 
     infrastructure --> 

    <!-- Enables the Spring MVC @Controller programming model --> 
    <annotation-driven /> 

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving 
     up static resources in the ${webappRoot}/resources directory --> 
    <resources mapping="/resources/**" location="/resources/" /> 

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources 
     in the /WEB-INF/views directory --> 
    <beans:bean 
     class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <beans:property name="prefix" value="/WEB-INF/views/" /> 
     <beans:property name="suffix" value=".jsp" /> 
    </beans:bean> 

    <context:component-scan base-package="kr.ac.jbnu.jinggumdari" /> 
    <context:annotation-config /> 

    <beans:bean 
     class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor" /> 

    <beans:bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" 
     destroy-method="close"> 
     <beans:property name="driverClassName" value="com.mysql.jdbc.Driver" /> 
     <beans:property name="url" 
      value="jdbc:mysql://localhost:3306/jinggumdari" /> 
     <beans:property name="username" value="root" /> 
     <beans:property name="password" value="mysql1234" /> 
    </beans:bean> 

    <!-- Hibernate 4 SessionFactory Bean definition --> 
    <beans:bean id="hibernate4AnnotatedSessionFactory" 
     class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> 
     <beans:property name="dataSource" ref="dataSource" /> 
     <beans:property name="annotatedClasses"> 
      <beans:list> 
       <beans:value>kr.ac.jbnu.jinggumdari.model.Member</beans:value> 
      </beans:list> 
     </beans:property> 
     <beans:property name="hibernateProperties"> 
      <beans:props> 
       <beans:prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect 
       </beans:prop> 
       <beans:prop key="hibernate.show_sql">true</beans:prop> 
      </beans:props> 
     </beans:property> 
    </beans:bean> 

    <beans:bean id="memberDAO" class="kr.ac.jbnu.jinggumdari.DAO.MemberDAOImpl"> 
     <beans:property name="sessionFactory" 
      ref="hibernate4AnnotatedSessionFactory" /> 
    </beans:bean> 
    <beans:bean id="memberService" 
     class="kr.ac.jbnu.jinggumdari.serviceImplementation.MemberManageServiceImpl"> 
     <beans:property name="memberDAO" ref="memberDAO"></beans:property> 
    </beans:bean> 

    <tx:annotation-driven transaction-manager="transactionManager" /> 

    <beans:bean id="transactionManager" 
     class="org.springframework.orm.hibernate4.HibernateTransactionManager"> 
     <beans:property name="sessionFactory" 
      ref="hibernate4AnnotatedSessionFactory" /> 
    </beans:bean> 
</beans:beans> 

您的声明是错误的。定义名称空间和模式位置是两件不同的事情。不要把xmlns:tx放在xis:schemaLocation之内,应该是http:

?xml version="1.0" encoding="UTF-8"?> 
<beans:beans xmlns="http://www.springframework.org/schema/mvc" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xsi:schemaLocation="http://www.springframework.org/schema/mvc 
    http://www.springframework.org/schema/mvc/spring-mvc.xsd 
     http://www.springframework.org/schema/beans 
     http://www.springframework.org/schema/beans/spring-beans.xsd 
     http://www.springframework.org/schema/context 
     http://www.springframework.org/schema/context/spring-context.xsd 
     http://www.springframework.org/schema/tx 
     http://www.springframework.org/schema/tx/spring-tx.xsd"> 

在从xsi:schemaLocation短删除xmlns:tx="

另一个提示使用无版本模式,而不是版本化模式。

+0

我试试这个。当我应用这个改变时,”The元素“tx:annotation-driven”的前缀“tx”未被绑定“error occurred。如何解决这个问题? – Rect

+0

架构位置中有一个额外的'''修正了它。还要确保你正在删除正确的一个! –

+0

谢谢。我解决了这个问题! – Rect

你在你的bean声明错过

xmlns:tx="http://www.springframework.org/schema/tx" 

<?xml version="1.0" encoding="UTF-8"?> 
<beans:beans xmlns="http://www.springframework.org/schema/mvc" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xsi:schemaLocation="http://www.springframework.org/schema/mvc 
    http://www.springframework.org/schema/mvc/spring-mvc.xsd 
     http://www.springframework.org/schema/beans 
     http://www.springframework.org/schema/beans/spring-beans.xsd 
     http://www.springframework.org/schema/context 
     http://www.springframework.org/schema/context/spring-context.xsd" 
     http://www.springframework.org/schema/tx 
     http://www.springframework.org/schema/tx/spring-tx-3.1.xsd"> 
+0

“xmlns:tx =”http://www.springframework.org/schema/tx“ 还有最后一个属性,是不是? – Rect