On 2/1/07, Jeffrey Blattman <[EMAIL PROTECTED]> wrote:
sorry, good syntax for hibernate? i'm using mysql. this a completely new install. new database, no migration from previously install.
Hi Jeffrey, I'm not sure if this is the problem or not, but if you are using MySQL5 you do need to set the correct Hibernate dialect. You can do that in WEB-INF/classes/hibernate.cfg.xml: Change this: <property name="dialect">org.hibernate.dialect.MySQLDialect</property> To this: <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property> - Dave
thanks! nicolas muller wrote: > Do you have the good syntax for hibernate ? Which database are you using ? > > Jeffrey Blattman a écrit : > >> fresh roller 3.1 install. when i access the user registration page, i >> get an empty page and an exception in the logs ... >> >> javax.servlet.jsp.JspException: ServletException in >> '/WEB-INF/jsps/core/UserNew.jsp': Cannot retrieve definition for form >> bean userFormEx on action /roller-ui/user >> at >> org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(InsertTag.java:921) >> >> >> any ideas? >> >> thanks >> >>
