【291天】每日项目总结系列029(2017.11.23)

叨叨两句

  1. ~

MVC开发模式

M:model 模型 (javaBean:封装数据)

V:View 视图  (JSP:展现数据)

C:controller 控制器 (Servlet:处理逻辑代码,作为控制器)

三层架构包名

简单

com.itheima.web

com.itheima.service

com.itheima.dao

com.itheima.domain/bean

com.itheima.utils

....

复杂

com.itheima.项目名.模块名.web

com.itheima.项目名.模块名.service

com.itheima.项目名.模块名.dao