Prev Next

Spring / Spring AOP

What do the proxy-target-class attributes do in Spring AOP?

To force the use of CGLIB proxies set the value of the proxy-target-class attribute of the element to true.

<aop:config proxy-target-class="true">
    <!-- other beans defined here... -->
</aop:config>

More Related questions...

Show more question and Answers...


Comments & Discussions