What is the Java @Configuration equivalent to:

<repositories base-package="com.acme.repositories" />

in Spring Data JPA? I am trying to get rid of XML configuration in favour to @Configuration classes, however reading through JpaRepositoryConfigDefinitionParser sources is fruitless.

The closest what I can get is:

@Bean
public RepositoryFactorySupport repositoryFactory() {
    return new JpaRepositoryFactory(entityManagerFactory().createEntityManager())
}

@Bean
public BookDao bookDao() {
    return repositoryFactory().getRepository(BookDao.class)
}

However the <repositories/> tag is much more functional: it automatically creates DAO for all interfaces extending CrudRepository found on CLASSPATH. Also it seems like my solution does not apply transactions to DAOs as opposed to default Spring Data JPA behaviour.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Looks like not possible yet: https://jira.springsource.org/browse/DATAJPA-69

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.