摘要:
Redis实战代码 1、引入 spring-boot-starter-redis 2、添加配置文件 3、添加cache的配置类 package cn.cnki.ref.config; import java.lang.reflect.Method; import org.springframewor 阅读全文
摘要:
序言 intellij idea 输入System.out.println()的快捷方法是:输入sout然后按tab键。 由于项目中引入了spring-boot-starter-test的依赖,也就是集成了spring boot的单元测试框架。给redis实现类,添加单元测试,将光标移动到Redis 阅读全文
摘要:
自定义Filter 我们常常在项目中会使用filters用于录调用日志、排除有XSS威胁的字符、执行权限验证等等。 Spring Boot自动添加了OrderedCharacterEncodingFilter和HiddenHttpMethodFilter,并且我们可以自定义Filter。 两个步骤: 阅读全文