CoreSpringV3.2 試験問題を無料オンラインアクセス
| 試験コード: | CoreSpringV3.2 |
| 試験名称: | Core-Spring (based on Spring 3.2) |
| 認定資格: | SpringSource |
| 無料問題数: | 97 |
| 更新日: | 2026-09-14 |
Which of the following is the correct mechanism for using programmatic transactions in Spring? (Select one)
@Configuration
public class AppConfig {
@Bean
public ClientService clientService() {
ClientServiceImpl clientService = new ClientServiceImpl();
clientService.addClientDao(new ClientDao());
return clientService;
}
In the example above, which statement is NOT true with regards to Spring Java configuration?
(select one)
Which of the following statements is NOT true with respect to Spring's ApplicationContext? (select one)
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)