一个springboot+layui开发模板

原版描述:SpringBoot+Layui后台管理系统,使用shiro安全框架

后端:

  • SpringBoot 2.1.0 
  • tk.mybatis 2.0.2
  • Shiro 1.3.1
  • Lombok 1.18.4

前端:

  • Layui 2.4.5
  • JQuery 3.3.1

渲染模板

  • Thymeleaf

Gitthub项目地址:https://github.com/Linliuxing/springboot-layui

各框架的集成详解:spring boot + mybatis + layui + shiro后台权限管理系统_架构的路上的技术博客_51CTO博客_shiro权限管理系统实现方法

修改后:

1.数据源修改成postgre(注释mysql依赖添加postgre)

2.注释lombok版本依赖springboot提供的版本

3.mysql基础数据sql 改为 postgresql

4.修改所有实体的id类型: integer 》String (mybatis中继承的方法selectByPrimaryKey会报错,具体运行原版)

5. springboot升级版本到2.6.2

6.修改项目名

7.原mysql  《 LIKE '%'  #{xx}   '%'》修改成  LIKE '%'  || #{xx}  || '%'(即使传的值就是String都不行),不修改会报ERROR: syntax error at or near "$1"错误,||在postgresql中是拼接的意思

8. 添加logback日志输出并生成文件

9. 新加4种上传文件模板(拖拽上传多文件,按钮选择上传多文件,图片上传当前页面展示,多文件单独选择批量上传)

10. 6种轮播模板

11. 添加定时任务(Schedul)

12. 添加个性banner

13. 添加邮件发送类  -->EmailUtils.java

14. 添加事物回滚,手动捕捉的异常需要在catch代码块中加入TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();手动回滚

15. 添加操作日志(增删改操作都会被记录到操作日志)

下载地址:https://download.csdn.net/download/qq3892997/68674702

你可能感兴趣的:(java,layui,spring,boot,java)