autoproxy method interceptors for all beans in application
Hi,
we have used spring for action injection, now the requirement is, i have to print on console each and every method name and class name (that is for each and every bean in configuration file) on run-time invocation, for that i have followed
<bean class="org.springframework.aop.framework.autoproxy .BeanNameAutoProxyCreator">
<property name="beanNames"><value>jdk*,OnlyJdk</value></property>
<property name="interceptorNames">
<list>
<value>beforeInterceptor</value>
</list>
</property>
</bean>
but it is not working please help me out