2013-06-21 50 views
0

我已經通過編程方式配置了AnnotationConfigWebApplicationContext以運行Web應用程序。但我想添加一些由註釋提供的自定義邏輯。通過自定義註釋進行掃描的編程等效物

,這是什麼程序等效代碼塊:

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

感謝

回答

0

我已經改變了我的應用程序,而不是使用程序掃描註釋。

@ComponentScan(
       basePackages = {"xxx", "yyy"}, 
       useDefaultFilters = true, 
       includeFilters = {@ComponentScan.Filter(value com.annotation.Fooish.class)} 
)