我需要在没有启动的情况下使用spring security,并且需要使用spring security版本4.2.20。但是,当我尝试扩展usernamepasswordauthenticationfilter时,我的eclipse出现了一个编译错误“myauthfilter类型的层次结构不一致”。i usernamepasswordauthenticationfilter位于类路径中,其所有层次结构类/接口也位于类路径中。不知道我错过了什么。。
这是我的pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.test.security</groupId>
<artifactId>spring-security-test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-security-test</name>
<description>spring security test</description>
<dependencies>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>4.2.20.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>4.2.20.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>4.3.30.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</project>
[在此处输入图像描述][1]我正在使用eclipse 2020-06。有人能帮忙吗?
以下是maven依赖项=>[1]:https://i.stack.imgur.com/id3ev.png
暂无答案!
目前还没有任何答案,快来回答吧!