其他分享
首页 > 其他分享> > 176-@Mapper注解是什么?

176-@Mapper注解是什么?

作者:互联网

1.@Mapper接口起到了什么作用呢?
    首先@Mapper接口和@Service与@Controller是不一样的,@Mapper是Mybatis框架的注解,@Service是Spirng框架的注解.
    然后@Mapper注解的作用只是将接口标记为Sql映射接口;

2.持久层的动态代理对象是怎么放到Spring容器中的呢?
    @Mapper会被Spring和MyBatis的整合依赖包扫描,然后定义到Spring容器中,然后创建对应的动态代理对象

3.为什么@Mapper注解有时候有,有时候有没有呢?
    当我们再配置文件中配置扫描时,就不用再写@Mapper借口了;比如我们再springboot框架中配置了@Mapper注解.

 

标签:Mapper,框架,Service,Spring,接口,注解,176
来源: https://www.cnblogs.com/pogusanqian/p/12895854.html