Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Basically, I have objects that need to become entities, but the code is generated and I can't touch it (thus I can't use annotations). I'd like to list them in an xml config. However, I'd also like spring to autodiscover and autowire the respective daos. How would I go about setting up my configuration?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can configure the component scan how you like (btw: you can have several component scans)

<context:component-scan base-package="org.example" use-default-filters="false">
    <context:include-filter type="regex" expression=".*Dao"/>
</context:component-scan>

This example will create beans for all classes thet match the regex and are located within the base package.

@See Spring Reference Chapter 3.10.3 Using filters to customize scanning

share|improve this answer
Ah-ha! That's what I needed. Apparently I wasn't "looking" in the right place (some of my daos were in a different package). – end-user Mar 16 '12 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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