有人能为此提供帮助吗? 我在下面的例外不确定为什么?
启动服务器时出现异常
配置问题:您无法使用spring-security-2.0.xsd或 使用Spring的spring-security-3.0.xsd或spring-security-3.1.xsd模式 安全3.2。请将您的架构声明更新为3.2 架构。
请有人帮忙吗?我在Pom.xml中使用3.0.5.RELEASE并在安全上下文中给出spring-security-3.0.xsd。
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.0.xsd">
答案 0 :(得分:0)
..or spring-security-3.1.xsd schema with Spring Security 3.2.
将架构声明更改为3.2 ..因为您可能正在使用Spring security 3.2 jar(例外 http://www.springframework.org/schema/security/spring-security-3.2.xsd"
)
http://www.springframework.org/schema/security/spring-security.xsd"
或者不提及该版本,它会自动采用提供的更高版本。
insert into table1 (col1, col2, foreignKey1) select column1, column2, id from table2