Spring Security xsd 异常

Spring Security: You cannot use a spring-security-2.0.xsd or spring-security-3.0.xsd or spring-security-3.1.xsd schema with Spring Security 3.2


出现类似的问题是spring security的版本与你在applicationcontext里面的写的
 xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
        http://www.springframework.org/schema/security
        http://www.springframework.org/schema/security/spring-security-3.1.xsd">

不一致或者版本不支持造成的,我的是3.2,这里面就得写成3.2

改后如下:
 xsi:schemaLocation="http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/security
        http://www.springframework.org/schema/security/spring-security-3.2.xsd">

启动tomcat不报错

你可能感兴趣的:(Java开发,Web,框架设计)