配置问题:无法找到XML模式命名空间[http://www.springframework.org/schema/context]的Spring NamespaceHandler 令人反感的资源:ServletContext资源[/WEB-INF/context.xml]
我该如何解决这些家伙?
这是我的context.xml:
<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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:component-scan base-package="id.sisi.forca.test.app.ForcaServerAplication" /> </beans>
答案 0 :(得分:0)
这是在创建具有依赖关系的maven包装jar并执行jar时发生的吗?
在maven-assembly-plugin
中使用maven打包jar时遇到相同的名称空间问题
通过将Maven插件更改为maven-shade-plugin
,可以解决名称空间问题。从下面的帖子中得到了答案:
[Stackoverflow]unable-to-locate-spring-namespacehandler-error