Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用的时候发现的一些问题 #84

Open
GoogleCodeExporter opened this issue Mar 28, 2016 · 0 comments
Open

使用的时候发现的一些问题 #84

GoogleCodeExporter opened this issue Mar 28, 2016 · 0 comments

Comments

@GoogleCodeExporter
Copy link

rapid版本: 3.9.3

【问题1】

在执行到

运行代码生成器 GeneratorMain.java

这一步的时候,执行之前要添加
xerces-2.3.0.jar

执行完之后,要去掉xerces-2.3.0.jar

否则会因为当前是 jdk1.6 使用的j.5特性  会发生版本冲突

要不就换成1.6 ,添加上xerces-2.3.0.jar

但是启动的时候还是会报错

也就是说,使用1.6的jdk,在使用GeneratorMain.java之前要添加上xerc
es-2.3.0.jar,在启动项目之前要去掉xerces-2.3.0.jar


【问题2】


log4j.properties里面的路径要换下,不然不知道日志生成到什么�
��方了


【问题3】

struts.xml里面的配置要改下

<constant name="struts.enable.DynamicMethodInvocation" value="false" />
改成
<constant name="struts.enable.DynamicMethodInvocation" value="true" />


【问题4】

javacommon.base.BaseHibernateDao.java 这个里面


import org.hibernate.criterion.Expression;
这个过时了,要换成
import org.hibernate.criterion.Projections;

下面的
Expression.eq(propertyName,value)
也要换成
Restrictions.eq(propertyName,value)

Original issue reported on code.google.com by mamacmm....@gmail.com on 18 Aug 2011 at 4:36

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant