http://stackoverflow.com/questions/22548325/java-lang-classcastexception-cannot-be-cast-to-java-lang-integer When you select specific columns from DB, the result you get is not the entity object, but an Object[], with each element of array holding di…
环境: Spring Cloud:Finchley.M8 Spring Boot:2.0.0.RELEASE 报错信息: Error creating bean with name 'com.cloud.feign.interfaces.xxxFeignClient': FactoryBean threw exception on object creation; nested exception is java.lang.IllegalSt.PathVariable annotation wa…
报错:Exception in thread "main" org.hibernate.exception.SQLGrammarException: Could not execute JDBC batch update 解决方法,把数据库方言MySQLInnoDBDialect改成MySQLDialect就可以了.…
异常信息:Unexpected Exception caught setting 'outHeight' on 'class com.srpm.core.project.seismicFortification.action.SeismicFortificationAction: Error setting expression 'outHeight' with value ['isOutHeight', ] 这个异常出现的原因我找了下网上有多个,我知道的有: 1.没有GETTER/SETTER…
开始运行得很好的项目,因为前一天高度了项目结构和名称突然报上面的错误 查了很多网上资料很多解决方案 造成这个错误的原因有很多,例如 1.@Entity 类有变动,无非正常生成对应的数据库. 解决:使用 spring: jpa: hibernate:ddl-auto: create 删除之前的数据库,重新重建数据库 2.变量的类型不对,例如:使用list的变量,就会出现这个错误 3.使用多个@Id注解的方式不正确. 解决:如何使用联合主键(复合主键) 4.@Column(name)的注解与数据库字…
我的问题出在,删除的对象对应的表中有一个外键,关联着另外一个表,可是另外一个表中没有数据,所以报了这个错误. 参考http://www.cnblogs.com/onlywujun/archive/2013/04/10/3012719.html 如果关联的外键可以为空,这时需要修改配置文件.加上红色的字即可.将not-null='true'去掉 <many-to-one name="post" class="对象" fetch="select"…
今天在使用一对多,多对一保存数据的时候出现了这个错误 Hibernate错误: Exception in thread "main" org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: zhongfucheng.domain.Employee 为啥出现这个错误呢???在保…
http://blog.sina.com.cn/s/blog_8acd9e4b0102uwev.html Hibernate对substring和cast的支持问题 问题:要比较日期的范围...这是只取MM-dd格式的日期,而数据库中记录的当然是最详细的yyyy-MM-dd的格式.这使用SQL很简单,substring(convert(varchar(10),birthday,120),6,5) 但是放到HQL中就出问题了.... hibernate竟然把它截为了substring(conver…
点击项目右键->MyEclipse->Add Hibernate Capabilities 打开MyEclipse Hibernate Perspective(MyEclipse Hibernate 视图) <?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN&q…
实现类: public class InfoDAOImpl extends BaseDao<Info> 1.List<Object[]> midlist=super.createSqlQuery(sqlStr, null);//根据SQL返回记录,每条记录对应对象数组 2.Map map = new HashMap<>();//map和InfoDTO中属性相同 String querySQL="SELECT b.contract_no from ……"…