0

これらのディレクトリをアプリに追加する必要があります。これは実際に機能します:

<context:component-scan base-package="web.controllers"/>
<context:component-scan base-package="web.controllers.gec"/>
<context:component-scan base-package="web.controllers.gec.costs"/>
<context:component-scan base-package="web.controllers.gec.pay"/>

たった 1 行のコードでこれを作成する方法を知りたいのですが。何かのようなもの:

 <context:component-scan base-package="web.controllers">
       <context:include-filter type="regex" expression=".*.*"/>
 </context:component-scan>

助けやアイデアはありますか?どうもありがとう!

4

2 に答える 2

1
<!-- The controllers are autodetected POJOs labeled with the @Controller annotation. -->
<context:component-scan base-package="com.company.app" use-default-filters="false">
    <context:include-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
</context:component-scan>
于 2013-01-25T16:00:40.813 に答える
0

申し訳ありませんが、実際には以前に投稿したソリューションは正常に機能します。

<context:component-scan base-package="web.controllers">
   <context:include-filter type="regex" expression=".*.*"/>
</context:component-scan>
于 2013-01-25T13:49:28.413 に答える