如何替换不推荐使用的Spring DistinguishedNameEditor?

时间:2018-07-16 04:25:47

标签: java spring ldap

我们在Spring 3.2.17中使用过时的Spring-LDAP DistinguishedNameEditor-我知道它很旧,这就是我们要升级的原因。但是,我在任何地方都看不到替换PropertyEditor。我们如何注入带有字符串的javax.naming.Name类型的字段?

<beans:bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
  <beans:property name="customEditors">
    <beans:map>
      <beans:entry key="javax.naming.Name">
        <beans:bean class="org.springframework.ldap.core.DistinguishedNameEditor"/>
      </beans:entry>
    </beans:map>
  </beans:property>
</beans:bean>

0 个答案:

没有答案