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 回答