Skip to content

Instantly share code, notes, and snippets.

@altfatterz
Created August 31, 2013 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save altfatterz/6397917 to your computer and use it in GitHub Desktop.
Save altfatterz/6397917 to your computer and use it in GitHub Desktop.
RepositoryMixConfig
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