org.springframework.http.converter.HttpMessageNotReadableException: Could not read JSON: Can not deserialize instance of java.lang.String out of START_OBJECT token at [Source: org.apache.http.conn.EofSensorInputStream@42b0f150; line: 1, column: 112]…
异常信息如下: JSON parse error: Can not deserialize instance of java.lang.String out of START_OBJECT token; nested exception is com.fasterxml.jackson.databind.JsonMappingException: Can not deserialize instance of java.lang.String out of START_OBJECT token…
报错栈: -- ::, ERROR [http-bio--exec-] cube.CubeManager: : Error during load cube instance, skipping : /cube/energon_dm_admission_record_fact_01.json java.lang.IllegalStateException: Failed to init CubeDescManager from kylin_metadata@hbase at org.apache…
线上问题: { "timestamp": "1544510665", "status": 400, "error": "Bad Request", "exception": "org.springframework.http.converter.HttpMessageNotReadableException", "message": "C…
今天在做 excel导出的时候,出现了一个问题"java.lang.ClassCastException: java.lang.String cannot be cast to com.domain.xxx": 公司用hibernate,查询时候可以用sql和hql,用什么一般看心情,第一次查询用的是select g.* from persion g ,site s where g.wz=s.dz(当然都是简写); 当get实体导出的 时候出现了" java.lang.Cla…
sql 语句拼接报错: No signature of method: java.lang.String.positive() is applicable for argument types: () values: [] 原因:字符串相加时,加号前后有空格 例如(这样是不行的): sql =+ "and c.efficientStatus = "+courseStatus //错误 要把加号后面的空格去掉就行了,简直了. 这是自己学习过程中的记录,方便自己回顾,好记性不如烂笔头. 作…
java 操作excel文件 发布后报错 org.apache.poi.POIXMLException: java.lang.reflect.InvocationTargetException XSSFWorkbook xwb = new XSSFWorkbook(fileName); 这句报错 使用的poi版本 3.8 网上提供的解决方案很多,一一试下,也没有解决. 后经过各种调查后,终于找到了解决办法. 此问题的确是jar包冲突. 只需要将里面的引用的 xbean-2.2.0.jar删除 b…
现象: mybatis mapper.xml 的sql里如果直接使用了想要传入的变量,比如: <select id="selectXx" resultType="int" statementType="STATEMENT"> SELECT COUNT(*) FROM B_PERSON WHERE ${columnName} != '' </select> 会出现 There is no getter for propert…
在使用Maven新建QuitStart类型项目时,引入了MyBatis3.2.0版本的JAR包之后,出现如下错误: Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/log4j/Priority at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:348) at org.apache.ib…
今天在修改一个关于mybtis语句时,偶然发现的一个错误  There is no getter for property named 'id' in class 'java.lang.String', 纠结了许久,终于明白了为什么. 原因:Mybatis默认采用ONGL解析参数,所以会自动采用对象树的形式取 string.xxx 值,如果没在在方法中定义,则会抛异常报错.当然也不是所有的版本会有这个问题,我的项目用的版本比较老. 有两种解决方案: 方案一: 将对应的参数用 _parameter…