此版本仍在开发中,尚未被视为稳定版本。如需最新稳定版本,请使用 Spring Security 7.0.4spring-doc.cadn.net.cn

介绍

Spring Security Kerberos 7.0.5-SNAPSHOT 已使用 JDK 17、 Spring Security 7.0.5-SNAPSHOT 和 Spring Framework 7.0.6 构建并测试。spring-doc.cadn.net.cn

Spring Security 7 的依赖坐标有所更改:spring-doc.cadn.net.cn

pom.xml
<dependencies>
	<!-- ... other dependency elements ... -->
	<dependency>
		<groupId>org.springframework.security</groupId>
		<artifactId>spring-security-kerberos-core</artifactId>
	</dependency>
	<dependency>
		<groupId>org.springframework.security</groupId>
		<artifactId>spring-security-kerberos-web</artifactId>
	</dependency>
</dependencies>
build.gradle
dependencies {
	implementation "org.springframework.security:spring-security-kerberos-core"
	implementation "org.springframework.security:spring-security-kerberos-web"
}