Created
August 31, 2013 12:33
-
-
Save altfatterz/6397917 to your computer and use it in GitHub Desktop.
RepositoryMixConfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.za.spring.fun.mixconfig; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.context.annotation.ImportResource; | |
import org.springframework.data.jpa.repository.config.EnableJpaRepositories; | |
/** | |
* Java and XML based repository configuration. | |
* | |
* @author Zoltan Altfatter | |
*/ | |
@Configuration | |
@ImportResource("config/infrastructure-config.xml") | |
@EnableJpaRepositories("com.za.spring.fun.repository") | |
public class RepositoryMixConfig { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment