I'm trying to use spring data and spring config together in a small standalone application.

...
  public static void main( String[] args )
  {        
    ApplicationContext ctx = new AnnotationConfigApplicationContext(AppConfig.class);
    ... 
  }

1. My question is how can I discover the spring data repositories without using

<jpa:repositories base-package="foo.repositories" />

by spring config ?

2. If not, can I use 'ClassPathXmlApplicationContext' and 'AnnotationConfigApplicationContext' together somehow ?

link|improve this question

53% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Currently there's no equivalent for <jpa:repositories … /> yet. Feel free tor track the according JIRA ticket. The feature will be a major one for the upcoming GA releases of the JPA module (1.1) as well as MongoDB (1.1).

link|improve this answer
Thanks for the quick reply. – cscsaba Dec 23 '11 at 8:43
feedback

I think you should have a look at context:component-scan

<context:component-scan base-package="com.myProject"/>

It autodetects components annotated with @Repository/@Service/@Component . Check here for this .

link|improve this answer
Using @Repository annotation on 'public interface Repository<T, ID extends Serializable>' interfaces belongs to Spring Data context. Anyway thanks for your help and time. – cscsaba Dec 23 '11 at 8:41
feedback

Your Answer

 
or
required, but never shown

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