I'm really new to Hibernate and I've run into some issues as I've been monkeying around with it.
I have these tables:
Code:
CREATE TABLE attribute (
ATTRIBUTE_ID bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`NAME` varchar(64) NOT NULL,
PRIMARY KEY (ATTRIBUTE_ID)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE car (
CAR_ID bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`NAME` varchar(64) NOT NULL,
PRIMARY KEY (CAR_ID)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE car_attribute (
CAR_ID bigint(20) unsigned NOT NULL,
ATTRIBUTE_ID bigint(20) unsigned NOT NULL,
`VALUE` text NOT NULL,
KEY CAR_ID (CAR_ID)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
And I have an Object to represent the Car and an Object to represent an Attribute. Each car can have many attributes. How do I define the relationship in my Car object so that it has attributes that draw their values from the car_attribute table?
Here is my current Car.hbm.xml (before I added the VALUE column to car_attribute):
Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="test.hibernate">
<class name="Car" table="CAR">
<id name="id" column="CAR_ID">
<generator class="native"/>
</id>
<property name="name"/>
<set name="attributes" table="CAR_ATTRIBUTE">
<key column="CAR_ID"/>
<many-to-many column="ATTRIBUTE_ID" class="Attribute"/>
</set>
</class>
</hibernate-mapping>
Thanks,
Andrew