0 votes
in Spring by

Which of the following is NOT true about Spring AOP?

a) It supports only method execution join points

b) It uses byte-code weaving

c) It is implemented using proxies

d) It's integrated with Spring's transaction management

1 Answer

0 votes
by
b) It uses byte-code weaving

Explanation:

Spring AOP is proxy-based and does not use byte-code weaving. Full-fledged AOP frameworks like AspectJ use byte-code weaving.
...