- 博客(5)
- 收藏
- 关注
原创 javax.crypto.BadPaddingException: Decryption error
在整RSA加密的时候用testng测试没什么问题,但是一旦用postman传过来密文去调接口解密就报错javax.crypto.BadPaddingException: Decryption error at sun.security.rsa.RSAPadding.unpadV15(RSAPadding.java:370) ~[na:1.8.0_312] at sun.security.rsa.RSAPadding.unpad(RSAPadding.java:282) ~[na:1.8.0_
2022-07-12 23:45:54 864 1
原创 UPDATE语句报错 is not valid at this position,expect an identifier
update movie set desc="2021-05-21 08:00~10:00" where key=1就是这么简单的一句更新语句愣是报错了半小时,最后才找到原因短短一句话我用了两个保留字'desc'、'key',解决办法就是加上反引号``,改成update movie set `desc`="2021-05-21 08:00~10:00" where `key`=1...
2021-11-23 01:32:01 2469
原创 [Vue warn]: Error in render: “TypeError: Cannot read properties of undefined (reading ‘0‘)“
在做课设时,改了vue中的一组数据后一直报这个错误,多方排查才发现是原数据是具有三层的二维数组,而新数组只有两层渲染时读不出这不存在的第三层数据,浪费半个小时呜呜呜呜
2021-11-18 15:24:18 1187
原创 REDIS学习笔记(一)
String命令设置键值对 SETkey value设置多个键值对 MSETkey value [key value...]SETNX = set if not existsMSETNX 同上获取键值对的值 GETkey获取多个键值对的值 MGETkey [key...]删除键 DEL key [key...]为已存在键设置存活时间 EXPIRE key seconds设置键及其存活时间 SETEX key seconds value查看剩余存活时间 TT...
2021-09-18 14:33:30 121
原创 spring security查询自定义数据库验证登录
java小白一个,为了不让东拼西凑的塑料springboot知识遗忘,斗胆开始写博客,方便日后ctrl+c/v首先引入security的pom依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId></dependency>接着配.
2021-09-05 12:36:11 336 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人