hi ,
I have defined a class in spring-Config.xml as below
<bean id="testClass" class="com.test.TestClass" scope="session">
<aop:scoped-proxy />
</bean>
defining it in Spring-Config.xml make sure that spring will create an object of it and will use it. now while writing the code in my utility class. I also want to access this instance and use it.
can I get and the same instance which spring has created. if yes please let me know how to get this same instance in
java.
thanks,