I am trying to create a BaseDAO interface which can be extended by all DAOs. The project uses spring-data with mongodb. The problem is that if I make all the individual DAOs extend MongoRepository and not write an Implementation class, then everything works fine. But if I try to add the MongoRepository to the BaseDAO interface with generics, the app doesn't work anymore because the parameters required to instantiate SimpleMongoRepository are null. This is the code I have so far :
BaseDAO.java
import com.test.mongodb.BaseEntity;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.data.repository.NoRepositoryBean;
import java.io.Serializable;
@NoRepositoryBean
public interface BaseDAO<T extends BaseEntity, ID extends Serializable> extends MongoRepository<T, ID> {
public T getTestObject(ID id);
}
BaseDAOImpl.java
import com.test.mongodb.BaseEntity;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.data.mongodb.repository.query.EntityInformationCreator;
import org.springframework.data.mongodb.repository.query.MongoEntityInformation;
import org.springframework.data.mongodb.repository.support.SimpleMongoRepository;
import org.springframework.data.repository.NoRepositoryBean;
import java.io.Serializable;
@NoRepositoryBean
public class BaseDAOImpl<T extends BaseEntity, ID extends Serializable> extends SimpleMongoRepository<T,
ID> implements BaseDAO<T, ID> {
@Autowired
private static MongoTemplate mongoTemplate;
@Autowired
private static EntityInformationCreator entityInformationCreator;
public BaseDAOImpl(Class<T> type){
super((MongoEntityInformation<T, ID>) entityInformationCreator.getEntityInformation(type), mongoTemplate);
}
@Override
public T getTestObject(ID id){
return findOne(id);
}
}
UserDAO.java
import com.test.mongodb.User;
import org.springframework.stereotype.Repository;
@Repository
public interface UserDAO extends BaseDAO<User, String> {}
UserDAOImpl.java
import com.test.mongodb.User;
import org.springframework.stereotype.Repository;
@Repository
public class UserDAOImpl extends BaseDAOImpl<User, String> implements UserDAO {
public UserDAOImpl(){
super(User.class);
}
}
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?><beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xmlns:mongo="http://www.springframework.org/schema/data/mongo"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/data/mongo http://www.springframework.org/schema/data/mongo/spring-mongo-1.1.xsd">
<!-- MongoFactoryBean instance -->
<mongo:mongo host="localhost" port="27017" />
<mongo:db-factory dbname="bank" mongo-ref="mongo" />
<!-- MongoTemplate instance -->
<bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
<constructor-arg name="mongoDbFactory" ref="mongoDbFactory" />
</bean>
<bean id="mappingContext" class="org.springframework.data.mongodb.core.mapping.MongoMappingContext" />
<bean id="entityInformationCreator" class="org.springframework.data.mongodb.repository.support.DefaultEntityInformationCreator">
<constructor-arg name="mappingContext" ref="mappingContext" />
</bean>
<mongo:repositories base-package="com.test.mongodb.repo"/>
</beans>
App.java
public class App {
public static void main(String[] args) {
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserRepository userRepository = context.getBean("userRepository", UserRepository.class);
User user = new User("Test User");
userRepository.save(user);
String id = user.getId();
System.out.println(id);
System.out.println(userRepository.getTestObject(user.getId()));
}
}
So when I run it, I get a NPE in BaseDAOImpl because both the mongoTemplate and the entityInformationCreator are null. How do I load them in? I also looked at the Spring MongoDB reference document but it mostly says to follow the documentation for other kind of repositories. The only thing I could find there and other places online was to create a factory bean. So I tried with that as well :
MongoRepoFactoryBean.java
import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.data.mongodb.repository.support.MongoRepositoryFactory;
import org.springframework.data.mongodb.repository.support.MongoRepositoryFactoryBean;
import org.springframework.data.repository.NoRepositoryBean;
import org.springframework.data.repository.core.support.RepositoryFactorySupport;
import java.io.Serializable;
@NoRepositoryBean
public class MongoRepoFactoryBean<T extends MongoRepository<?,?>, ID extends
Serializable> extends MongoRepositoryFactoryBean {
protected RepositoryFactorySupport createRepositoryFactory(Class<T> clazz, MongoTemplate mongoTemplate) {
return new MongoRepoFactory(clazz, mongoTemplate);
}
private static class MongoRepoFactory extends MongoRepositoryFactory {
private Class clazz;
private MongoTemplate mongoTemplate;
public MongoRepoFactory(Class clazz, MongoTemplate mongoTemplate) {
super(mongoTemplate);
this.mongoTemplate = mongoTemplate;
this.clazz = clazz;
}
public Object getTargetRepository() {
return new BaseDAOImpl(clazz);
}
public Class<?> getRepositoryBaseClass() {
return BaseDAOImpl.class;
}
}
}
and changed the applicationContext.xml with :
<mongo:repositories base-package="com.test.mongodb.repo"
factory-class="com.test.mongodb.repo.MongoRepoFactoryBean"/>
But that doesn't work either. I tried with JavaConfig as well, but I don't know how to set the factory-class when doing the configuration using annotations. What am I doing wrong? SimpleMongoRepository doesn't come with a default constructor. Is the problem in injecting static fields?