参数校验框架:配置MVC时参数错误
我也踩过这个坑( 1 )
参数校验
详细描述
错误截图
编辑于2024-11-01
-
[深圳|结业弟子]JAVA-苏晔0
原因在于,引用SpingMVC.xml中的头文件时3.0版本的xsd,
下面这个注解时3.1才有的,所以把xsd文件的版本换成4.0的就好了!
<?xml version="1.0" encoding="UTF-8"?>xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:aop="http://www.springframework.org/schema/aop"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beans</beans>编辑于2018-07-13
- 去第 页