1.2.1可用,我可以通过
获得<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap</artifactId>
<version>1.2.1</version>
</dependency>
但我无法获得最新版本。我用过
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap</artifactId>
<version>1.3.1.RELEASE</version>
</dependency>
我对使用LdapTemplate的验证方法感兴趣。
答案 0 :(得分:7)
现在看起来他们想要你to declare dependencies on individual modules。
但是,单个模块is still there,但您需要使用分类器来访问它:
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap</artifactId>
<version>1.3.1.RELEASE</version>
<classifier>all</classifier>
</dependency>
答案 1 :(得分:0)
可在以下链接中找到