Error occured processing XML 'org.springframework.beans.MutablePropertyValues.get(Ljava/lang/String;)Ljava/lang/Object;'. See Error Log for more details
转自:http://blog.csdn.net/niu_hao/article/details/25250213
家里的电脑,发现这个报错,在配置文件:<resources mapping="/resources/**" location="/resources/" /> 时报错
(并不影响正常使用,只是看着不爽,其实右键该报错,delete就好了),记得在公司的电脑上是正常的,网上找了如下操作
解决办法为:将
http://www.springmodules.org/schema/cache/springmodules-cache.xsd http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd
这段话加入到xml文件的"xmlns:xsi="的标签中
- <?xml version="1.0" encoding="UTF-8"?>
- <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance http://www.springmodules.org/schema/cache/springmodules-cache.xsd http://www.springmodules.org/schema/cache/springmodules-ehcache.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
- http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd
- ">