Thymeleaf

第四步:创建 MVC 相关类

蒲公英 提交于 周四, 06/04/2020 - 22:57

本教程架构当前较流行的 Java 技术:
Spring Boot、MVC 、Security + Mybatis + Mysql + Thymeleaf

 

后台我们仍采用通常分层方式:
Controller -> Service -> Dao(这里是 Mybatis 的 Mapper)

 

 

 

创建以下包:

  • com.example.demo.controller
  • com.example.demo.service
  • com.example.demo.entity
  • com.example.demo.mapper

追加 Entity 类: