1.搭建springboot框架
2.resources包
mapper -- 自定義包名 -- .xml文件(數據庫字段的增刪改查)
Dispatch2Dao.xml

templates.view -- 自定義包名 -- 分類包名
.html -- 頁面文件
-- 自定義+Form(可用作 -增- -改-)
-- 自定義+List(可用作 -展示-)
-- 自定義+View(可用作 -查看-)
3.java中common 包
-- base -- BaseController (定義controller基類)

-- base -- BaseDao (定義公用的dao方法)

-- base -- BaseEntity(定義公用的字段方法-- 實體基類)

-- base -- BaseServices(定義sevices接口--繼承BaseEntity --加入增刪改查)

-- base -- BaseServiceImpl(定義sevices實現類)

4.java中modules 包
-- 自定義包名
-- controller

-- dao

-- entity

-- enums

-- service

-- service -- impl

