I'd like to ask how should I load bean (defined in application xml) in my service class in Spring application. I've tried to load it using (and simillar solutions):
public class MyService {
public void myMethod() {
ApplicationContext context = new ClassPathXmlApplicationContext("security-config.xml");
LdapPersonDAO ldapPersonDAO = (LdapPersonDAO) context.getBean("ldapPersonDAO");
}
}
security-config.xml
<bean id="ldapPersonDAO" class="shdb.ldap_sync.dao.LdapPersonDAO">
<property name="ldapTemplate" ref="ldapTemplate" />
</bean>
but no solution works for me. Is there any standard solution?
Thanks for any help,
Mateo