spring+mybatis分层思想

1.使用mybatis generator自动生成实体类和dao层。(mapper)
2.前端请求到controller层,使用@controller注解截获请求。
3.controll调用service层的接口方法。(采用注入的方式讲service注入controller)
4.service层的servicelmpl实现类实现该方法,在Servicelmpl中注入dao层的mapper类实现对数据库的操作。mapper类中具体的数据库操作在对应的xml中配置,crud。
5.新建高可复用的公共类返回公共信息。
6.接口实现类servicelmpl处理了具体业务之后类返回公共类中的信息,返回到controller中。
7.controller将数据返回到前端。

你可能感兴趣的:(spring+mybatis分层思想)