0

AnnotationConfigWebApplicationContext をプログラムで構成して、Web アプリケーションを実行しました。しかし、注釈によって提供されるいくつかのカスタム ロジックを追加したいと思います。

これに相当するプログラムコードは何ですか:

<context:component-scan base-package="org.aaa">
  <context:include-filter type="annotation" expression="com.annotation.Fooish" />
</context:component-scan>

ありがとう

4

1 に答える 1

0

プログラムによるスキャンの代わりに注釈を使用するようにアプリケーションを変更しました。

@ComponentScan(
                 basePackages = {"xxx", "yyy"},
                 useDefaultFilters = true,
                 includeFilters = {@ComponentScan.Filter(value com.annotation.Fooish.class)}
)
于 2013-06-22T15:14:52.450 に答える