2 回答
TA贡献2021条经验 获得超8个赞
你spring配置文件的头部 schema出问题了
1)http://www.osoa.org/xmlns/sca/1.0/spring-sca.xsd这个找不到
3)这个文件的根元素不是<xsd:schema>
你可以找个正确的把你这个xml配置文件的头部替换一下,不知道你使用的spring哪个版本,下面我贴一个:仅供参考,或者你可以在网上搜索一个正确的替换下:
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
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-2.0.xsd">
</beans>
TA贡献1830条经验 获得超3个赞
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
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-2.0.xsd">
</beans>
添加回答
举报
