Dummy form need to be surrounded by empty form tag
<h:form id=”dummy”>
<h:selectOneMenu value=”#{localeSelector.localeString}”>
<f:selectItems value=”#{localeSelector.supportedLocales}”/>
</h:selectOneMenu>
<h:commandButton action=”#{localeSelector.select}” value=”#{messages['ChangeLanguage']}”/>
</h:form>
This will come if any of the entity classes modified.
1. Stop the server
2. Just remove temp, work folders
3. Restart the system
<property name=”hibernate.dialect” value=”com.pack.ABCDMySqlDialect”/>
Solution
http://opensource.atlassian.com/projects/hibernate/browse/HHH-2582
ABCDDialect.java
After this don’t zip the folder, jar them with jar tool.
package com.abcd;
import java.sql.Types;
import org.hibernate.dialect.MySQL5InnoDBDialect;
public class ABCDDialect extends MySQL5InnoDBDialect
{
public ABCDDialect()
{
super();
registerColumnType(Types.NUMERIC, “decimal($p,$s)”);
registerColumnType(Types.DECIMAL, “decimal($p,$s)”);
}
}
seam-gen.reveng.xml
<table-filter match-name=”table1″ />
<table-filter match-name=”table2″ />
<table-filter match-name=”table3″ />
This line help us to reverse engineer only this table.
Table name must be small letter for MYSQL
Buid.properties file
Correct
hibernate.default_schema.null=sechama_name
Wrong
hibernate.default_schema=sechama_name
This stopped whole generation of files.
Also whenever you stuck up start new project and start again the whole process.