我正在
org.springframework.beans.BeanInstantiationException:无法实例化bean类[javax.servlet.FilterChain]:指定的类是一个接口
当我使用如下弹簧版本时。关于相同的任何建议
<spring.version>3.2.9.RELEASE</spring.version>
<spring.security.version>3.2.9.RELEASE</spring.security.version>
My dispatcher servlet:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
由于弹簧兼容性版本,这个问题是否正在发生?