SpringSource Core-Spring (based on Spring 3.2) - CoreSpringV3.2 模擬練習

Which statement best describes the advantage of using AfterReturning advice, rather than simply using after advice? (Select one)

正解: B
Which of the following statements is NOT true about advice types (select one)

正解: B
Which of the following statements best describes the After Returning advice type? (select one)

正解: D
Security filters are used in Spring Security in which ways? (select one)

正解: D
Which of the following statements about Spring @MVC is NOT true (select one)

正解: D
<bean name="clientService" class="com.foo.ClientServiceImpl" p:name="myName"/>
Which of the following statements is true regarding the above code sample? (Select one)

正解: D
Which of the following statements is NOT true about Spring AOP? (Select one)

正解: D
Which of the following strategies is correct for configuring Spring Security to intercept particular URLs? (Select one)

正解: D
Identify the correct statement about the following pointcut expression. Assume that these 2 classes do not inherit from one another:
Execution (* rewards.service.MyClass.*(..)) && execution(* rewards.service2.MyOtherClass.*(..))
(Select one)

正解: B
public class AppConfig {
public ClientService clientService() {
return new ClientServiceImpl();
}
}
The Spring Java configuration above is NOT correct. Why? (select one)

正解: D