Spring
裴星宙
一些学习笔记, 一些备忘录.
展开
-
SpringBoot JPA MySQL 遇到中文乱码的解决办法
在SpringBoot JPA中使用MySQL时, 数据库的值为中文乱码, 需要如下两个方面的设置, 1. 数据库的编码为UTF-8, 或者GB2312 也可以. ALTER SCHEMA `YourDBName` DEFAULT CHARACTER SET utf8 ;2. 更改Springboot的配置文件, 更改MySQL链接如下spring.datasource.url= jdbc...原创 2018-02-21 22:55:33 · 4923 阅读 · 0 评论 -
Springboot中关于 static 和 templates的注意事项, 以及webjars的配置
1. 默认情况下, 网页存放于static目录下, 默认的"/"指向的是~/resouces/static/index.html文2. 如果引入了thymeleaf, 则默认指向的地址为~/resouces/templates/index.html <dependency> <groupId>org.springframework.boot</groupId>...原创 2018-03-11 19:26:19 · 15747 阅读 · 0 评论 -
ThymeLeaf layout th:replace表达式
官网: 章节: 原文: 笔记:原创 2018-04-06 17:55:55 · 1669 阅读 · 0 评论 -
Springboot 配置H2数据库
1. 配置文件 spring.thymeleaf.cache=false spring.resources.cache-period=0 server.port=80 spring.datasource.url=jdbc:h2:file:./db/test01 #spring.datasource.url=jdbc:h2:mem:test #spring.datasour...原创 2018-06-26 15:54:10 · 22093 阅读 · 6 评论 -
SpringBoot AOP笔记
1. 启用AOP a. 在类上添加@Aspect注解 b. 注入该类, 可以使用@Component进行注入到Spring容器中2. 通过PointCut对象创建切入点 a. 在某个方法使用类似下面的方法进行注入 @Pointcut("execution(* com.sguess.service.IAOPService.*(..))") privat...原创 2018-09-21 13:20:47 · 269 阅读 · 0 评论 -
在Springboot中通过jasypt 进行加密解密
1. 用途在SpringBoot中,通过jasypt可以进行加密解密. 这个是双向的, 且可以配置密钥.2.使用:2.1 通过UT创建工具类,并认识jasyptimport org.jasypt.util.text.BasicTextEncryptor;import org.junit.Test;public class UtilTests { @Test ...原创 2018-09-27 16:22:21 · 6943 阅读 · 0 评论