springboot 基本调用过程
**SpringMVC **
Spring 启动过程
监听器 (项目启动)---> 过滤器(启动)---->Serverlet (第一次访问)
** springboot 基本调用过程**
spring 学习
Controller-->service接口-->serviceImpl-->dao接口-->daoImpl-->reposotory接口-->repositoryImpl-->mapper-->db
控制层调用业务层
业务层中是不应该含有具体对象,最多只能有引用,如果有具体对象存在,就耦合了。
业务层调用数据访问层
Service层 = Service接口 + ServiceImpl 实现类
Service 接口层就是是端口,ServiceImpl 实现类里不同的方法就是 线路1、线路2甚至是线路3