당신은 온라인 연습 문제를 통해 SpringSource CoreSpringV3.2 시험지식에 대해 자신이 어떻게 알고 있는지 파악한 후 시험 참가 신청 여부를 결정할 수 있다.
시험을 100% 합격하고 시험 준비 시간을 35% 절약하기를 바라며 CoreSpringV3.2 덤프 (최신 실제 시험 문제)를 사용 선택하여 현재 최신 97개의 시험 문제와 답을 포함하십시오.
/ 3
Question No : 1
Which of the following statements defines an "aspect"? (select one)
정답:
Question No : 2
Which of the following statements defines a "pointcut"? (select one)
정답:
Question No : 3
Identify the correct statement about the following pointcut expression:
execution(@javax.annotation.security.RolesAllowed * rewards.restaurant.*.*(..)) (Select one)
정답:
Question No : 4
Identify the correct statement(s) about the following pointcut expression:
execution(* rewards..restaurant.*.*(*)) (select one or several answers)
정답:
Question No : 5
Identify the correct statement(s) about the following pointcut expression:
execution(* rewards.restaurant.*Service.find(..))
정답:
Question No : 6
Which of the following statements is NOT true concerning the BeanPostProcessor Extension point? (Select one)
정답:
Question No : 7
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)
정답:
Question No : 8
Which statement is true with regards to the above example? (select one)
ClientService service = applicationContext.getBean(ClientService.class)
정답:
Question No : 9
In the example above, which statement is NOT true with regards to Spring Java configuration?
(select one)
@Configuration
public class AppConfig {
@Bean
public ClientService clientService() {
ClientServiceImpl clientService = new ClientServiceImpl();
clientService.addClientDao(new ClientDao());
return clientService;
}
정답:
Question No : 10
The Spring Java configuration above is NOT correct. Why? (select one)
public class AppConfig {
public ClientService clientService() {
return new ClientServiceImpl();
}
}
정답:
Question No : 11
What is the id of the declared bean? (Select one)
import com.springsource.service.*;
...
@Configuration
public class AppConfig {
@Bean
public ClientService clientService() {
return new ClientServiceImpl();
}
}
정답:
Question No : 12
Which of the following statements about Spring's JUnit integration testing support is true? (select one)
정답:
Question No : 13
Which of the following statements about Spring and unit testing is true? (Select one)
정답:
Question No : 14
Which of the following statements best describes the benefits of using the Spring Framework with respect to unit testing? (Select one)
정답:
Question No : 15
Which of the following statements about use of the @Transactional annotation in a JUnit integration test is NOT true? (Select one)