SpringBoot增删改查页面代码(二)

后续我用了高版本的MySQL,application.properties里面为(用8.0MySQL的可以改成下面的配置,没有用8.0的话,就不用改配置):

#扫描实体类
mybatis.type-aliases-package=com.example.entity
#扫描映射文件
mybatis.mapper-locations: classpath:mapper/*.xml

#配置数据库
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/test?seUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&failOverReadOnly=false&serverTimezone=UTC
spring.datasource.username=root
spring.datasource.password=root

#过滤静态资源
spring.mvc.static-path-pattern=/**

#指定系统直接访问路径
spring.resources.static-locations = classpath:/templates/,classpath:/META-INF/resources/,classpath:/resources/
#热部署:修改后台文件保存后自动重启
#spring.devtools.restart.enabled=true

#Messages资源信息
#spring.messages.basename=messages

#关闭thymeleaf缓存 开发时使用 否则没有实时画面
spring.thymeleaf.cache=false




1.在templates文件夹下user文件夹,修改userList.html文件




    
    用户列表
    



用户列表



ID 姓名 年龄 编辑 删除
编辑 删除

2.在同个目录下,新建userAdd.html




    
    添加用户
    



添加用户



      返回

3.新建userEdit.html




    
    修改用户
    



修改用户



      返回

至此,基于SpringBoot的增删改查项目就已经完成了,后续会陆续完善功能

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