产品springboot云化环境初始化与公用方法改造
- 表格 数据获取:
/GetDataAction.do?method=getData&
=> /app/view/data
- 下拉框 数据获取:
/GetDataAction.do?method=getQueryComboboxData&
=> /app/view/comboboxdata
- 缓存数据清理:
/tbp/ClearCache.do?modid=tbp.sys.clearcache
=> /app/clearcache
产品springboot云化环境package的分布
filter
=> 主要用于网页请求过滤
controller
=> 主要用于网页请求控制
service
=> 主要用于业务代码逻辑
dao
=> 主要用于数据库的增删改查
entity
=> 主要用于实体对象的编写
utils
=> 主要用于一些工具类的编写static
impl
=> 主要用于对抽象接口的实现,主要分布在service层以及dao层
转载于:https://my.oschina.net/u/1988355/blog/1579370