Hi All , I wanted to use session scope spring bean in spring controller which is singleton . Can some one please suggest what are the best approach to achieve this ??
Hi All , I wanted to use session scope spring bean in spring controller which is singleton . Can some one please suggest what are the best approach to achieve this ??
found the solution of this by using APO proxy . Used below code and now I'm able to populate session scope bean in Controller .
Code:@Scope(value = "session", proxyMode = ScopedProxyMode.TARGET_CLASS)