摘要:
Spring Boot 使用 拦截器 实现 token 验证 整体思路:1.写一个工具类封装生成、校验和解析 token 的方法;2.在注册和登录时生成 token ,生成的 token 存入 redis ,下次登录去 redis 获取,如果存在则直接返回通过3.在拦截器中校验和解析 token , 阅读全文
摘要:
Spring AOP 中@Pointcut的用法(多个Pointcut) /** swagger切面,分开来写 **/ @Aspect @Component public class ApiOperationLogAspect { private Logger logger = LoggerFact 阅读全文
摘要:
springboot拦截器@resource注解注入为null解决方案 拦截适配配置 为什么@resource注入为nullinteceptor在springcontext之前加载,注入必然是null 解决方案加入注解@Bean,注意需要使用@Configuration,而不是@Component解 阅读全文
摘要:
spring mvc GET请求方式及传参 @Api(tags = "管理接口") @Slf4j @RestController @RequestMapping("/myOutApi/public/test") public class MyManageController{ @Autowired 阅读全文
摘要:
springboot项目配置多数据源 //关键:mybatis文件的目录需要区分开来 sqlSessionFactoryBean.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath: 阅读全文
摘要:
如果redis没有设置expire,他是否默认永不过期?默认是的 通过EXPIRE key seconds 命令来设置数据的过期时间。返回1表明设置成功,返回0表明key不存在或者不能成功设置过期时间。在key上设置了过期时间后key将在指定的秒数后被自动删除。被指定了过期时间的key在Redis中 阅读全文
摘要:
Java中的ThreadLocal和 InheritableThreadLocal package com.example.core.mydemo.java; /** * output * Thread-0 ThreadLocal value :null * Thread-0 Inheritable 阅读全文
摘要:
Idea SpringBoot 子模块 加载不到该子模块根目录config下面的配置文件 import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; impor 阅读全文
摘要:
springboot增加@EnableAsync注解,否则方法中的@Async注解没有生效。 @EnableFeignClients(basePackages = {"com.test", "com.test.order"})@EnableAsync@EnableEurekaClient@Sprin 阅读全文