Consider the following bean definition
<bean id="clientService" class="com.springsource.service.ClientServiceImpl" />
Using Spring AOP, you have declared a Pointcut targeting all methods inside the clientService bean. ClientServiceImpl implements 3 different interfaces.
Which interfaces will the proxy class implement? (Select one)
- All interfaces
- The proxy class does not implement any interface
- A Spring bean should never implement any interface
Reveal Solution
Next Question