AbstractJpaTests « XML « Spring Q&A





1. AbstractJpaTests with WEB-INF/applicationContext.xml    forum.springsource.org

AbstractJpaTests with WEB-INF/applicationContext.xml Hi all, I have a test class: Code: public class DaoTests extends AbstractJpaTests { UserDAO userDAO; public UserDAO getUserDAO() { return userDAO; } public void setUserDAO(UserDAO userDAO) { ...

2. AbstractJpaTests and multiples DataSouces in Spring-config.xml?    forum.springsource.org

Hi all! I wanna test my daos with AbstractJpaTests but i got 2 datasources in my application context. Spring tries to autowire a DataSource to my AbstractJpaTests but it can't choose ...

3. Make AbstractJpaTests look for applicationContext.xml in all classpath    forum.springsource.org

Make AbstractJpaTests look for applicationContext.xml in all classpath I'm having trouble with a test class extending AbstractJpaTests. The applicationContext.xml file I want to use is NOT in the same directory/package as ...