13.07.2015 Views

Spring Core Certification 3 Mock Exam - Java & Moi

Spring Core Certification 3 Mock Exam - Java & Moi

Spring Core Certification 3 Mock Exam - Java & Moi

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Correct answer is the number 4.Due to the proxy-based nature of <strong>Spring</strong>'s AOP framework, protected methods are by definition notintercepted, neither for JDK proxie nor for CGLIB proxies. As a consequence, any given pointcut willbe matched against public methods only!To intercept private and protected methods, AspecJ weaving should be used instead of the <strong>Spring</strong>’sproxy-bases AOP framework.Question 21The 2 correct statements are 1 and 5.What are the 2 correct statements about AOP proxy.1. An object created by the AOP framework in order to implement the aspect contracts2. If the target object does not implement any interfaces then a CGLIB proxy will be created.You could also use CGLIB proxy instead of JDK dynamic proxy3. If the target object does not implement any interfaces then a CGLIB proxy will be created.4. When CGLIB proxy is used, final methods cannot be advised, as they cannot be overridden.5. AOP Proxies are created by the AbstractAutoProxyCreator#postProcessAfterInitializationmethod.Question 22The answer number 2 is correct.1. A before advice could throw an exception2. An after throwing advice is executed if a method exits by throwing an exception3. An advice that executes before a join point is named a before advice4. <strong>Spring</strong> supports after throwing advicesQuestion 23Correct answer: 4Question 241. This is an after (finally) advice2. This is an around advice3. This is a before advice4. TrueCorrect answer: 11. Definition of an advice2. Definition of a joint point3. Represents nothing

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!