Scott
Yes, I do have the requirement classed mapped in a seprate file ... here is the mapped file.
Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class name="com.domain.ectd.requirement.Requirments" table="BPMS_REQ_SPECS">
<id name="requirementId" column="REQUIREMENT_ID" length="32" unsaved-value="null">
<generator class="uuid.string"/>
</id>
<property name="description" column="REQ_DESCRIPTION"/>
<property name="contractNo" column="REQ_CONTRACT_NO"/>
</class>
</hibernate-mapping>
<!-- parsed in 0ms -->
In the first place, I want to know whether the mapping is right.