—— 阿尔伯特·爱因斯坦

程序员の奇妙冒险

spring-security封装权限认证自动配置,开箱即用

spring-security-auth-starter spring-security 权限认证自动配置,开箱即用,支持动态续租token过期时间,支持统一API服务接口调用权限认证,支持基于@PreAuthorize注解方式授权认证,支持基于URL路径权限认证。登录接口前端可对密码进行rsa加密...

4300

spring boot整合 beetlSQL和druid

我使用的版本 beetl v2.8.5beetlsql v2.10.30spring boot v1.5.12druid-spring-boot-starter v1.1.9 application.yml配置 beet-beetlsql: dev: true spring: datasource:...

2900

spring boot 整合 beetl

我的版本 spring boot v1.5.12beetl v2.8.5 package top.itczw; import org.beetl.core.resource.ClasspathResourceLoader; import org.beetl.ext.spring.BeetlGroup...

3900

java 非递归list转换为树tree型结构

需求 最近在做一个导出数据生成树节点的工作 ,从数据库中导出全国省市区街道数据,查询出来是 list集合需要转换成树 tree 表 大概有这几个字段 CREATE TABLE dic ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(63) NOT...

2000

spring-boot-devtools 热部署遇到的坑

之前一直使用war搭配tomcat跑项目,现在改用jar方式跑,并使用spring-boot-devtools 热部署, 项目中配置了RedisSessionDAO,使用redis缓存,当认证成功,将查询出来的对象存到session中, 再从session取出对象是object,将object进行转...

1900