我收到以下错误
Line 84 in XML document from class path resource [car-job-app-context.xml] is
invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 84;
columnNumber: 154; cvc-complex-type.2.4.c: The matching wildcard is strict, but
no declaration can be found for element 'jpa:repositories'.
这是我的档案
<?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:context="http://www.springframework.org/schema/context"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:repository="http://www.springframework.org/schema/data/repository"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jdbc
http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
http://www.springframework.org/schema/data/repository
http://www.springframework.org/schema/data/repository/spring-repository.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/data/jpa
http://www.springframework.org/schema/data/jpa/spring-jpa-2.0.xsd" >
.....
<context:annotation-config/>
<context:component-scan base-package="pk.training.basitMahmood.service.impl" />
<jpa:repositories base-package="pk.training.basitMahmood.repository" entity-manager-factory-ref="emf" transaction-manager-ref="transactionManager" />
以下是我的maven依赖项的快照
我也看到了相同的链接,即在tx declaration
之后移动context
,但它无效。
same post as my question。我在组合之前和之后尝试过,但错误仍然存在。
为什么我收到此错误?我无法在数据库中保存数据....?
由于
答案 0 :(得分:5)
命名空间的顺序无关紧要。确保spring-data-jpa工件位于类路径中,并仔细检查模式版本。没有spring-jpa-2.0这样的东西。它应该介于1.0和1.3之间。使用Spring,您通常也可以省略版本并默认获取最新模式。
答案 1 :(得分:0)
问题是bean架构的定义。
更改xmlns="http://www.springframework.org/schema/beans"
xmlns:beans="http://www.springframework.org/schema/beans"
答案 2 :(得分:0)
您可以添加bean;
xmlns:jpa="http://www.springframework.org/schema/data/jpa"