Hallo,
Ich habe ein Problem mit einem Query über ein Map-Property :
Ich habe ein Objekt (Produkt) welches als ein Property eine Map besitzt.
Als Key ist das persistente Objekt Property und als Value das persistente Objekt PropertyValue.
Ich versuche nun alle Produkte die ein bestimmtes "Property" (propertyId) als Key in der Map besitzen herauszufinden.
Irgend welche Ideen ?
Gruß Kai
Anlagen :
Produkt :
Code:
/**
* @author k.ulrich
*
* @hibernate.class table="Product"
*/
public class Product implements java.io.Serializable {
[...]
private Map propertyValues;
[...]
/**
* @return Returns the actionFelds.
* @hibernate.map
* @hibernate.collection-key column="FK_Product" type="java.lang.String"
* @hibernate.index-many-to-many column="FK_Property" class="com.achtg.intertrade.hibernate.Property"
* @hibernate.collection-one-to-many column="propertyValue" class="com.achtg.intertrade.hibernate.PropertyValue"
*/
public Map getPropertyValues() {
return propertyValues;
}
public void setPropertyValues(Map properties) {
this.propertyValues = properties;
}
[...]
}
Property
Code:
/**
* @author k.ulrich
*
* @hibernate.class table="Property"
*/
public class Property implements java.io.Serializable {
[...]
private String propertyId;
[...]
}
PropertyValue
Code:
/**
* @author k.ulrich
*
* @hibernate.class table="PropertyValue"
*/
public class PropertyValue implements java.io.Serializable {
[...]
private Integer propertyValueId;
[...]