- 博客(6)
- 收藏
- 关注
转载 springboot 相关错误总结(2)
问题描述: “Unable to load authentication plugin 'caching_sha2_password'”.研究了很久发现是因为MySQL的版本问题原因:MySQL版本问题,由5到8加密方式导致的5.X版本是:default_authentication_plugin=mysql_native_password8.x版本就是:default_authentication_plugin=caching_sha2_password解决办法,登录mysql,将8...
2020-06-01 20:01:50
340
转载 Bean的相关问题和理解
https://blog.youkuaiyun.com/w_linux/article/details/80086950
2019-10-15 17:39:56
161
转载 关于No serializer found for class org.hibernate.proxy.pojo.javassist.Javassi的问题
最近在搬砖的时候发现有一个 No serializer found for class org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer and no properties discovered to create BeanSerializer (to avoid exception, disable Serializat...
2019-09-26 10:48:20
363
转载 Postman 一些报错信息汇总
一.Required Integer parameter 'XXX' is not present1、异常提示: DEBUG o.s.w.s.m.m.a.ServletInvocableHandlerMethod - Error resolving argument [2] [type=java.lang.Integer] HandlerMethod details: Co...
2019-05-16 18:06:06
2836
原创 二分查找
前言:之前在做leetcode的时候竟然连两分查找都写不出来了,特此写一下,省的手生脑懒。一、 递归:public class search{private int searchfind(int[] nums,int x_s,int x_e,int t){ int r = -1; if(x_s<=x_e){ if(nums[(x_s+x_e)/2...
2019-03-06 17:14:12
109
原创 spring boot 相关错误总结(1)
一、 连接数据库时未配置方言。报错信息:Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set at org.hibernate.engine.jdbc.dialect.internal.D...
2019-03-04 16:24:22
1054
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人