搞了一天了,这个错误- cvc-complex-type.2.4.c: 到底是啥原因啊?

发布于 2021-11-27 06:53:21 字数 2319 浏览 863 评论 2

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:p="http://www.springframework.org/schema/p"
	xmlns:aop="http://www.springframework.org/schema/aop" 
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="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/aop
	http://www.springframework.org/schema/aop/spring-aop.xsd
	http://www.springframework.org/schema/tx
	http://www.springframework.org/schema/tx/spring-tx.xsd">
	<!-- 扫描包加载Service实现类 -->
	<context:component-scan base-package="com.taotao.service"></context:component-scan>
	<!-- *****************事务******************* -->
	<!-- 配置事物管理器 -->
	<bean id="transactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<!-- 注入 -->
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	<!-- 配置基于注解的声明式事务 默认使用基于注解来管理事务行为 -->
	<tx:annotation-driven transaction-manager="transactionManager" />
</beans>

报错位置是上面的配置文件里的

<!-- 扫描包加载Service实现类 -->
 <context:component-scan base-package="com.taotao.service"></context:component-scan>
搞到半夜没找到原因,maven update project 无数次,clen project也无数次,代码以前是好的。只是今天开机导入了别的项目,以前没问题的项目和新项目都出现了这类问题。

按照网上同样的问题原因都是

xsi:schemaLocation=
没有:
	http://www.springframework.org/schema/context 
	http://www.springframework.org/schema/context/spring-context.xsd

但是我的明显有啊。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终遇你 2021-12-02 12:55:48

可以体验一下魔方网表试试。

蓝颜夕 2021-11-30 12:46:52

网络问题。无视就好了。没有影响

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文