1 2 3 4 5 6 7 8 |
<context:component-scan base-package="com"> <context:include-filter type="regex" expression=".pandy.*"/> <context:include-filter type="regex" expression=".auto.*"/> <context:include-filter type="regex" expression=".his.*"/> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/> </context:component-scan> |