异常处理T T
小燃儿
java developer。
微信公众号:程序员小燃 【i_java_code】
展开
-
dubbo与keeper碰到不能传输的问题
com.alibaba.dubbo.rpc.RpcException: Failed to invoke the method getTbitemByID in the service com.tao.....查阅了网上很多的资料,发现都不是自己的错误。过了一天,检查数据库的时候才发现。。。不知道什么时候被关闭了。开启数据库,程序能够正常传输了。ps:真是挫伤我初学的积极性啊 ,加油 。原创 2017-08-15 13:49:10 · 357 阅读 · 0 评论 -
hibernate controller层返回前端json转化失败 org.springframework.http.converter.HttpMessage
错误:2018-02-05 14:22:17.567 WARN 520 --- [nio-7900-exec-1] .w.s.m.s.DefaultHandlerExceptionResolver : Failed to write HTTP message: org.springframework.http.converter.HttpMessageNotWritableExcepti原创 2018-02-05 14:25:13 · 2285 阅读 · 0 评论 -
使用Spring cloud Feign在后台服务之间调用传递Multipart无法传递的问题
异常: error”:”Bad Request”,”exception”:”org.springframework.web.multipart.support.MissingServletRequestPartException”,”message”:”Required request part ‘file’ is not present”,”path”:”/excel/import/uploa...原创 2018-02-28 11:17:47 · 8871 阅读 · 2 评论 -
调用feign请求超时 feign.RetryableException: Read timed out executing POST
异常: feign.RetryableException: Read timed out executing POST http://xxx at feign.FeignException.errorExecuting(FeignException.java:67) at feign.SynchronousMethodHandler.executeAndDecode(Sync...原创 2018-02-28 17:56:56 · 12506 阅读 · 1 评论 -
Feign 传输报请求头太大无法解析的问题
异常: java.lang.IllegalStateException: PWC4662: Request header is too large at org.apache.coyote.http11.InternalInputBuffer.fill(InternalInputBuffer.java:740) at org.apache.coyote.http11.InternalInpu...原创 2018-02-28 18:00:42 · 4141 阅读 · 4 评论 -
Illegal mix of collations (utf8_general_ci,COERCIBLE) and (latin1_swedish_ci,NUMERIC) for operation>
mysql 编码异常的问题异常:Illegal mix of collations (utf8_general_ci,COERCIBLE) and (latin1_swedish_ci,NUMERIC) for operation ‘>’原因:和网上的一些问题原因不同,不是由于数据库的编码问题。而是我的在sql中有一个时间范围的sql条件,当时间格式为yyyy-MM (如‘201...原创 2019-06-04 12:43:19 · 1900 阅读 · 1 评论 -
springboot2.0配置WebMvcConfigurer的configureMessageConverters方法不启用
问题想要自定义一个序列化,将long型转成string,将double类型保留3位小数。但是发现配置后无效。代码@Configurationpublic class BaseMvcConfig implements WebMvcConfigurer { @Override public void configureMessageConverters(List<Htt...原创 2019-07-18 09:52:36 · 13382 阅读 · 2 评论