jeecg bpm 启动错误
### Error querying database.Cause: org.hibernate.exception.SQLGrammarException: ERROR: column "name_" does not exist位置:37
### The error may involve org.activiti.engine.impl.persistence.entity.PropertyEntity.selectProperty-Inline
### The error occurred while setting parameters
### Cause: org.hibernate.exception.SQLGrammarException: ERROR: column "name_" does not exist
根本原因是hibernate 自动创建的数据库居然有问题,估计是作者的配置有误,看了一下数据库,的确是“name”,而不是“name_”
改成name_还是不行。后来我干脆执行它自己带的sql文件jeecg-bpm.sql。 搞定
还有一个问题,web.xml带了一个错误字符,必须去掉
<!-- session超时设置30分钟 add by zhoujunfeng 20130830 -->
<session-config>
<session-timeout>30</session-timeout>
</session-config>
<!-- session超时设置30分钟 add by zhoujunfeng 20130830 -->
<welcome-file-list>
<welcome-file>/webpage/login/login.jsp</welcome-file>
</welcome-file-list>
&joa;
</web-app>
页:
[1]