Skip to content

Instantly share code, notes, and snippets.

@altfatterz
Created August 31, 2013 12:20
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/6397844 to your computer and use it in GitHub Desktop.
Save altfatterz/6397844 to your computer and use it in GitHub Desktop.
RepositoryConfig
package com.za.spring.fun.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
/**
* Java based repository configuration.
*
* @author Zoltan Altfatter
*/
@Configuration
@Import(InfrastructureConfig.class)
@EnableJpaRepositories("com.za.spring.fun.repository")
public class RepositoryConfig {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment