学习记录
文章平均质量分 65
烛火未明
throw new Exception("lib_dil");
展开
-
springboot2学习记录之 整合thymeleaf
1.引入依赖在pom.xml中dependencies标签中引用 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>2...原创 2018-03-07 11:31:27 · 3354 阅读 · 0 评论 -
springboot2学习记录之 加入bootstrap及jquery
下载bootstrap以及jquery,进入到项目/resources/static/(一般都是这种结构):将下载的文件放进去,以后文件会越来越多,最好分好类:我们使用springboot默认的thymeleaf配置:参考地址在login页面中引入:<!DOCTYPE html><html xmlns:th="http://www.thymeleaf.org"><...原创 2018-03-09 12:59:31 · 5134 阅读 · 2 评论 -
springboot学习记录之 thymeleaf使用模板
开头奉上官方文档(http://www.thymeleaf.org/doc/articles/layouts.html)!博主在整合前台页面整体布局的时候发现 layout:fragment 使用不了,查了一个多小时资料,才发现要引入一个包,下面奉上maven引入(建议在整合thymeleaf的时候顺便一起把这个依赖下载下来!!!!):<dependency> <group...原创 2018-03-12 20:56:52 · 1286 阅读 · 0 评论 -
springboot学习记录之 spring security简单使用
本文记录了博主学习spring security(以下称为security)的过程,并整理了相关细节。1.创建项目导入maven依赖包: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf&l...原创 2018-05-18 22:49:46 · 501 阅读 · 2 评论