Spring启动异常: cvc-elt.1: Cannot find the declaration of element 'beans'

 

本来项目一点事没有,突然今天遇见这个Spring启动异常: cvc-elt.1: Cannot find the declaration of element 'beans'问题,上网搜了下, 根据异常说的: 就是'beans'没有定义. 这可能是命名空间有问题。
提供如下解决方案:

详细的资料请看[分享]Spring启动异常: cvc-elt.1: Cannot find the declaration of element 'beans'

修改Spring applicationContext.xml文件XML的命名空间,改为如下代码:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<beans>

问题解决

你可能感兴趣的:(spring,xml,bean)