mvc各层举例说明

##model层:
对应数据库表中的字段,及处理字段的get/set方法
mvc各层举例说明
###dao层
接口文件,如MenuRepository.class接口文件,里面是接口方法的声明,而方法对用的sql语句是放在/resources/mapping下的xml文件
mvc各层举例说明
mvc各层举例说明

##Controller层
controller/*Handler.class文件,连接前后端,里面有对接口中方法的实现
mvc各层举例说明
##view层是展示层

参考:https://blog.****.net/wyx0224/article/details/81190792
参考:https://blog.****.net/limuzi13/article/details/44968819