2024年2月4日
摘要:
1.mysql## 去掉非空,如果非空又没有默认值,这样程序在添加数据的时候i,如果没有设置值就会报错。该操作很危险。##ALTER TABLE `order_test` ADD COLUMN `test_card_name` NOT NULL VARCHAR(200) COMMENT '卡名称';
阅读全文
posted @ 2024-02-04 19:23
oktokeep
阅读(41)
推荐(0)
摘要:
微信支付普通商户与AppID账号关联管理 二、名词解释 名词 释义 微信支付普通商户 公司企业、政府机关、事业单位、社会组织、个体工商户、个人卖家、小微商户。(微信支付商户接入指引) AppID 已通过微信认证的服务号,订阅号*[1],小程序,企业微信*[2],移动应用*[3]等的ID *[1]:订
阅读全文
posted @ 2024-02-04 19:03
oktokeep
阅读(1464)
推荐(0)
2024年1月15日
摘要:
Spring Boot 使用 拦截器 实现 token 验证 整体思路:1.写一个工具类封装生成、校验和解析 token 的方法;2.在注册和登录时生成 token ,生成的 token 存入 redis ,下次登录去 redis 获取,如果存在则直接返回通过3.在拦截器中校验和解析 token ,
阅读全文
posted @ 2024-01-15 19:11
oktokeep
阅读(2696)
推荐(0)
摘要:
Spring AOP 中@Pointcut的用法(多个Pointcut) /** swagger切面,分开来写 **/ @Aspect @Component public class ApiOperationLogAspect { private Logger logger = LoggerFact
阅读全文
posted @ 2024-01-15 19:10
oktokeep
阅读(1557)
推荐(0)
摘要:
springboot拦截器@resource注解注入为null解决方案 拦截适配配置 为什么@resource注入为nullinteceptor在springcontext之前加载,注入必然是null 解决方案加入注解@Bean,注意需要使用@Configuration,而不是@Component解
阅读全文
posted @ 2024-01-15 19:08
oktokeep
阅读(1104)
推荐(0)
摘要:
spring mvc GET请求方式及传参 @Api(tags = "管理接口") @Slf4j @RestController @RequestMapping("/myOutApi/public/test") public class MyManageController{ @Autowired
阅读全文
posted @ 2024-01-15 19:08
oktokeep
阅读(302)
推荐(0)
摘要:
springboot项目配置多数据源 //关键:mybatis文件的目录需要区分开来 sqlSessionFactoryBean.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:
阅读全文
posted @ 2024-01-15 19:06
oktokeep
阅读(77)
推荐(0)
摘要:
如果redis没有设置expire,他是否默认永不过期?默认是的 通过EXPIRE key seconds 命令来设置数据的过期时间。返回1表明设置成功,返回0表明key不存在或者不能成功设置过期时间。在key上设置了过期时间后key将在指定的秒数后被自动删除。被指定了过期时间的key在Redis中
阅读全文
posted @ 2024-01-15 18:57
oktokeep
阅读(351)
推荐(0)
摘要:
Java中的ThreadLocal和 InheritableThreadLocal package com.example.core.mydemo.java; /** * output * Thread-0 ThreadLocal value :null * Thread-0 Inheritable
阅读全文
posted @ 2024-01-15 18:55
oktokeep
阅读(32)
推荐(0)
摘要:
Idea SpringBoot 子模块 加载不到该子模块根目录config下面的配置文件 import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; impor
阅读全文
posted @ 2024-01-15 18:54
oktokeep
阅读(480)
推荐(0)