基于Annotation的装配,把service层中的javaBean注入到spring中,用什么注解?
A: @Service
B: @Repository
C: @Autowired
D: @Resource
A: @Service
B: @Repository
C: @Autowired
D: @Resource
举一反三
- 基于注解(Annotation)的装配中,用于标注一个业务逻辑注解类(Service层)的Bean是( )。 A: @Component B: @Repository C: @Service D: @Controlle
- Spring中定义了一系列的注解,常用的注解有() A: @Autowired B: @Repository C: @Service D: @Controller
- 基于注解(Annotation)的装配,用于将数据访问层(DAO)的类标识为Bean的是( )。 A: @Component B: @Repository C: @Controlle D: @Service
- Spring中的一系列的注解中, @Repository、@Service与@Controller功能与( )注解的功能相同。
- @Autowired注解需要标注在Service层的实现类上,这样才能实现依赖注入。