这是我的spring-security.xml文件
<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
所以最后一行指定了3.0版本,如果你转到它将显示模式的URL,这是一个有效的xsd文件。如果我在那个xsd上发出命令+ B,它会带我到2.0版本。
我知道我的计算机上存在一个3.0.8 spring-security xsd文件,intelliJ只是不会使用它(即使它下载了它!)。
如何在项目中手动放置此xsd文件?
答案 0 :(得分:0)
我遇到了同样的问题,我通过从应用程序中删除spring-dao jar来解决它。以下链接将为您提供更多详细信息: https://jira.spring.io/browse/SPR-4161