本文整理汇总了Java中org.springframework.ldap.test.LdapTestUtils.clearSubContexts方法的典型用法代码示例。如果您正苦于以下问题:Java LdapTestUtils.clearSubContexts方法的具体用法?Java LdapTestUtils.clearSubContexts怎么用?Java LdapTestUtils.clearSubContexts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.springframework.ldap.test.LdapTestUtils
的用法示例。
在下文中一共展示了LdapTestUtils.clearSubContexts方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: loadData
import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
protected static void loadData() throws Exception
{
// Bind to the directory
LdapContextSource contextSource = new LdapContextSource();
contextSource.setUrl("ldap://127.0.0.1:10389");
contextSource.setUserDn("uid=admin,ou=system");
contextSource.setPassword("secret");
contextSource.setPooled(false);
//contextSource.setDirObjectFactory(null);
contextSource.afterPropertiesSet();
// Create the Sprint LDAP template
LdapTemplate template = new LdapTemplate(contextSource);
// Clear out any old data - and load the test data
LdapTestUtils.clearSubContexts(contextSource, LdapUtils.newLdapName("dc=example,dc=com"));
LdapTestUtils.loadLdif(contextSource, new ClassPathResource("data.ldif"));
}
示例2: tearDown
import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void tearDown() throws Exception {
LdapTestUtils.clearSubContexts(contextSource, baseName);
odmManager=null;
contextSource=null;
converterManager=null;
}
示例3: cleanup
import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void cleanup() throws NamingException {
LdapTestUtils.clearSubContexts(contextSource, LdapUtils.newLdapName("ou=People"));
}
示例4: cleanup
import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void cleanup() throws Exception {
LdapTestUtils.clearSubContexts(contextSource, LdapUtils.newLdapName("ou=People"));
}
示例5: cleanup
import org.springframework.ldap.test.LdapTestUtils; //导入方法依赖的package包/类
@After
public void cleanup() throws Exception {
LdapTestUtils.clearSubContexts(contextSource, LdapUtils.newLdapName("ou=People"));
attributesMapper = null;
contextMapper = null;
}