Results 1 to 2 of 2

Thread: AridPOJO-like <context:component-scan>

  1. #1

    Default AridPOJO-like <context:component-scan>

    From
    http://blog.interface21.com/main/200...-in-spring-21/

    >> What do you think about AridPOJO-like xml configuration?

    This means AridPOJOs-like <context:component-scan>.
    I was not able to submit the following examples.

    Code:
    <context:component-scan
        base-package="foo.bar"
        includes="*Action"
        excludes="FooAction, BarAction"
        scope="request"
        autowire="byType" />
    
    <context:component-scan
        base-package="foo.bar"
        includes="*DaoImpl"
        excludes="FooDaoImpl, BarDaoImpl"
        p:dataSource-ref="dataSource"
        p:sqlMapClient-ref="sqlMapClient" />
    Hideyuki Suzumi
    Last edited by slopetown; May 17th, 2007 at 12:32 PM.

  2. #2

    Default

    i'd be happy with include a new tag:
    <package> which performs what the arid pojo initial did...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •