Hi
I am using spring 2.5.6-SEC01.
How can I achieve the following with annotations?
the customer context can be autowired into SecurityContextFilter using @Autowired annotation, the filter itself what annotation should I use there? @Service or @Filter (or something like that)Code:<beans:bean id="securityContextFilter" class="com.workscape.admin.SecurityContextFilter"> <custom-filter after="PRE_AUTH_FILTER"/> <beans:property name="customerContext" ref="customerContext"/> </beans:bean>
TIA
Srikanth


