#pt

Caused by: java.lang.IllegalArgumentException: Can not set int field reyo.sdk.enity.xxx.xxx to java.lang.Long

由于数据库字段设置不正确引起的,不能选中alter <table> modify <column> int unsigned;关于unsigned int类型,可以看看它的帮助:INT[(M)] [UNSIGNED] ...

Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect timed out

问题:java连接不上redis。异常信息:Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: connect time...

java.util.ConcurrentModificationException解决详解

当我们迭代一个ArrayList或者HashMap时,如果尝试对集合做一些修改操作(例如删除元素),可能会抛出java.util.ConcurrentModificationException的异常。packagereyo.sdk.utils.test.list2;importjava.util.ArrayList;i...

disruptor--Introduction

ThebestwaytounderstandwhattheDisruptoris,istocompareittosomethingwellunderstoodandquitesimilarinpurpose.InthecaseoftheDisruptorthiswouldbeJava's BlockingQu...
代码星球 ·2020-04-04

java.lang.IllegalArgumentException: Illegal character in query at index ...解决办法

今天在写智能机器人问答实现的时候遇到了一个问题,就是我发送消息不能输入空格给我报了一个错误java.lang.IllegalArgumentException:Illegalcharacterinqueryatindex说是我输入的数据有问题,在这里说明因为在我们使用的是get方式传输数据,它会在url后面跟上你所带的...

编写高质量 JavaScript -- 知识点小记

 一: 团队合作避免JS冲突脚本中的变量随时存在冲突的风险,1.  解决办法---用匿名函数将脚本包起来,让变量的作用域控制在匿名函数之内如: <scripttype="text/javascript">(function(){vara=123,b="121...

com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor

 <dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper</artifactId><version>4.0.0</version>&...

Tomcat-connector的微调(1): acceptCount参数

对于acceptCount这个参数,含义跟字面意思并不是特别一致(个人感觉),容易跟maxConnections,maxThreads等参数混淆;实际上这个参数在tomcat里会被映射成backlog:static{replacements.put("acceptCount","backlog");replacemen...

使用@Async异步注解导致该Bean在循环依赖时启动报BeanCurrentlyInCreationException异常的根本原因分析,以及提供解决方案【享学Spring】

每篇一句面试造飞机,工作拧螺丝。工作中你只需要知道那些调用命令怎么使用就行,但背后的逻辑你有必要去了解前言今天在自己工程中使用@Async的时候,碰到了一个问题:Spring循环依赖(circularreference)问题。或许刚说到这,有的小伙伴就会大惊失色了。Spring不是解决了循环依赖问题吗,它是支持循环依赖...

版本不匹配引发的坑:javax.validation.UnexpectedTypeException: HV000030: No validator could be found for constraint

发现一个API报了错:javax.validation.UnexpectedTypeException:HV000030:Novalidatorcouldbefoundforconstraint'javax.validation.constraints.NotEmpty'validatingtype'java.lang...

java.sql.SQLException: connection holder is null

 ###Cause:java.sql.SQLException:connectionholderisnull;uncategorizedSQLExceptionforSQL[];SQLstate[null];errorcode[0];connectionholderisnull;nestedexception...

解决——》java.lang.IllegalArgumentException: Body parameter 0 was null

1、操作2、现象(错误信息)3、原因错误代码:4、解决1)方案一:@RequestBody(required=false)2)方案二:传参数时限制authSession不能为空odyparameter0wasnull)1、操作调用controller时2、现象(错误信息)java.lang.IllegalArgumen...

MyBatisSystemException 【exception】

 org.mybatis.spring.MyBatisSystemException:nestedexceptionisorg.apache.ibatis.type.TypeException:Couldnotsetparametersformapping:ParameterMapping{property=...
代码星球 ·2020-04-04

ToDoList--HttpMediaTypeNotSupportedException

 org.springframework.web.HttpMediaTypeNotSupportedException:Contenttype'application/x-www-form-urlencoded;charset=UTF-8'notsupportedatorg.springframework.w...

一次SocketException:Connection reset 异常排查

问题描述上一期的需求上线之后,线上多了一个异常:Connectionreset。如下:[2017-03-2200:45:00ERROR][creativeAuditTaskScheduler_Worker-9](cn.com.ServiceImpl:169)-getAuditResultexception,callad...
首页上一页...253254255256257...下一页尾页