We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
mamacmm....@gmail.com
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original issue reported on code.google.com by
mamacmm....@gmail.com
on 18 Aug 2011 at 4:36The text was updated successfully, but these errors were encountered: