遇到 BeanDefinitionParsingException 怎么解决?java报错
在编写java的样例代码时出现这种问题。这种情况应该如何解决和避免那?
2020-05-02 10:07:22.234:WARN::Nested in org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from relative location [spring/spring-db-context.xml]|Offending resource: class path resource [spring-root-context.xml]; nested exception is org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/tx]|Offending resource: class path resource [spring/spring-db-context.xml]|:org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/tx]|Offending resource: class path resource [spring/spring-db-context.xml]|
at org.springframework.beans.factory.parsing.FailFastProblemReporter.error(FailFastProblemReporter.java:68)
原因是什么,为什么会发生异常,以及下面到底发生了什么。如果有人能帮忙?提前谢谢
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
楼主。看了你的错误信息,很明显根据提示可以知道,错误原因:异常中提示Unable to locate Spring NamespaceHandler for XML schema namespace,说明找不到对应的XML文件,这时候你应该检查你的应用中是否缺少spring-tx的jar包,或者是你的maven工程缺少spring-tx的引用。