|
本帖最后由 一棵秋天的树 于 2013-10-8 17:38 编辑
eclipse3.7, tomcat7,其中jasper.jar用tomcat6中的替代。
可以运行。
但在init.jsp中运行到
RepairServiceImpl.java中的
deleteAndRepair()方法
commonDao.executeHql("delete TSAttachment");这句时出错,
错误信息: org.hibernate.exception.SQLGrammarException: Table 'jeecg-test.ht_t_s_attachment' doesn't exist at
......
org.hibernate.internal.QueryImpl.executeUpdate(QueryImpl.java:116) at org.jeecgframework.core.common.dao.impl.GenericBaseCommonDao.executeHql(GenericBaseCommonDao.java:876) at jeecg.system.service.impl.RepairServiceImpl.deleteAndRepair(RepairServiceImpl.java:56) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
找了一个3.2.0的sql,修改了几个id varchar(255)为varchar(36)后,
再把dbconfig.properties里的改为
hibernate.hbm2ddl.auto=update
可以登录进去。
从代码看,目前3.3.2还是有问题的。 |
|