
springboot+thymeleaf
E等于MC平方
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
跟我学spring boot thymeleaf系列文章第二章 thymeleaf表单
源码地址:https://github.com/pony-maggie/spring-boot-thymeleaf-learn本章打算介绍下thymeleaf表单相关的操作。为了避免本末倒置,后端的数据我都采用模拟的方式写成固定值返回,并且不涉及数据库相关的操作。编码我们先实现一个测试controller,有两个方法,一个是get方法,用于我们在浏览器里定位到表单的页面,一个post方法,...原创 2019-07-29 10:28:10 · 770 阅读 · 0 评论 -
跟我学spring boot thymeleaf系列文章第一章 一个简单的示例入门
文章目录什么是thymeleaf关于spring boot和thymeleaf编写demo源码地址:https://github.com/pony-maggie/spring-boot-thymeleaf-learn第一章肯定要先引入概念。然后给一个基本的示例。什么是thymeleafthymeleaf是一种用于Web和独立环境的现代服务器端的Java模板引擎。(这基本是官方说法)市面上...原创 2019-07-21 23:56:19 · 369 阅读 · 0 评论 -
跟我学spring boot thymeleaf系列文章第三章 thymeleaf表单进阶
源码地址:https://github.com/pony-maggie/spring-boot-thymeleaf-learn本章介绍下thymeleaf表单一些比较复杂的操作。编码我们先实现一个测试controller,@RestControllerpublic class UserController { private List<User> userList ...原创 2019-08-05 14:27:15 · 420 阅读 · 0 评论