Java – unable to find spring namespacehandler for XML schema namespace[ http://www.springframework.org/schema/data/jpa ]
•
Java
Any idea, what might cause this error?
This is my 'servlet context XML '(there are some problems with indentation, but the file is too large...):
<?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:tx="http://www.springframework.org/schema/tx" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:jpa="http://www.springframework.org/schema/data/jpa" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 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/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.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="com.epam.mvc3.model" /> <context:component-scan base-package="com.epam.mvc3.controller" /> <!-- JPA --> <beans:bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <beans:property name="location"> <beans:value>resources/database.properties</beans:value> </beans:property> </beans:bean> <beans:bean id="myDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <beans:property name="driverClassName"> <beans:value>${jdbc.driverClassName}</beans:value> </beans:property> <beans:property name="url"> <beans:value>${jdbc.url}</beans:value> </beans:property> <beans:property name="username"> <beans:value>${jdbc.username}</beans:value> </beans:property> <beans:property name="password"> <beans:value>${jdbc.password}</beans:value> </beans:property> </beans:bean> <beans:bean id="myEmf" class="org.springframework.orm.jpa.LocalContainerEntityManagerfactorybean"> <beans:property name="dataSource" ref="myDataSource" /> <beans:property name="persistenceUnitName" value="application" /> <beans:property name="persistenceXmlLocation" value="classpath*:Meta-INF/persistence.xml" /> <beans:property name="jpaVendorAdapter" ref="hibernateVendor" /> <beans:property name="loadTimeweaver"> <beans:bean class="org.springframework.instrument.classloading.InstrumentationLoadTimeweaver"></beans:bean> </beans:property> </beans:bean> <beans:bean id="hibernateVendor" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> </beans:bean> <beans:bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> <beans:property name="entityManagerFactory" ref="myEmf"></beans:property> </beans:bean> <tx:annotation-driven transaction-manager="transactionManager" /> <!-- Spring Data configuration --> <jpa:repositories base-package="com.epam.mvc3.repository"/> </beans:beans>
As you can see, I specified the path of JPA schema I don't know what the problem is
Solution
Try replacement
http://www.springframework.org/schema/data/jpa/spring-jpa.xsd
adopt
http://www.springframework.org/schema/data/jpa/spring-jpa-1.0.xsd
However, if you still use version 1.0-m1, please try to update it first DATAJPA-21
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码