2011-10-19 81 views
3

休眠我有一個Formula定義爲:與JPA忽略@Formula

@Entity 
@Table(name = "MyEntity") 
@org.hibernate.annotations.Table(appliesTo = "MyEntity") 
public class MyEntity 
{ 
    @Enumerated(value = javax.persistence.EnumType.STRING) 
    @Transient 
    @Formula(value = "select e.state from OTHER_ENTITY e") 
    private State state; 

    public State getState() 
    { 
     return this.state; 
    } 
//setter and another properties 
} 

但它忽略它。

這裏是我的Persistence Unit

<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" 
version="2.0"> 
<persistence-unit name="myPersistence" transaction-type="RESOURCE_LOCAL"> 
    <provider>org.hibernate.ejb.HibernatePersistence</provider> 
    <mapping-file>META-INF/orm.xml</mapping-file> 
    <exclude-unlisted-classes>true</exclude-unlisted-classes> 
    <properties> 
     <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" /> 
     <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" /> 
     <property name="hibernate.connection.url" value="jdbc:mysql://url:3306/db" /> 
     <property name="hibernate.connection.username" value="root" /> 
     <property name="hibernate.connection.password" value="root" /> 
     <property name="hibernate.show_sql" value="true" /> 
     <property name="hibernate.hbm2ddl.auto" value="validate" /> 
    </properties> 
</persistence-unit> 

的sql沒有Formula產生。

如果我刪除@TransientJPA試圖加載state列,然後失敗。

我想根據另一個實體的狀態來計算狀態。這就是我認爲Formula有效的原因。

謝謝!

Udo。

回答

3

您試圖將狀態映射兩次:一次是向字段添加註釋,一次是向getter添加註釋。將所有註釋放在相同的地方(並在與@Id註釋相同的位置)。

但這真是令人困惑。你的狀態是暫時的(意味着它根本沒有映射,不應該從數據庫中讀取),但它也被枚舉(爲什麼Hibernate會使用這個註釋,因爲它應該是瞬態的)和公式。

最後,公式是在每個用於加載實體的SQL中添加的一段SQL。所以它不應該包含一個select子句或一個from子句,而只是一個使用表本身的某些列的公式。例如,假設你有一個表salary列和bonus列,你可以有一個公式爲totalIncome這將是'獎金+工資'。但是id並沒有比這更進一步。

+0

但是,如果我不想在db中聲明一列,那麼@Transient是neede? – ssedano

+1

編號公式已經說過:這不是DB中的列,而是從其他值計算出的值。所以不需要瞬態。 –

+0

那麼爲什麼由於該列丟失而無法加載持久性單元呢? – ssedano

2

我認爲這應該工作。我認爲@Transient讓Hibernate完全忽略了這個屬性。

@Entity 
@Table(name = "MyEntity") 
@org.hibernate.annotations.Table(appliesTo = "MyEntity") 
public class MyEntity 
{ 
    // MAYBE YOU HAVE TO MOVE IT TO THE GETTER @Enumerated(value = javax.persistence.EnumType.STRING) 
    // REMOVE THIS @Transient 
    private State state; 

    @Enumerated(value = javax.persistence.EnumType.STRING) // MOVED 
    @Formula(value = "(select e.state from OtheEntity e)") 
    public State getState() 
    { 
     return this.state; 
    } 
//setter and another properties 
} 
+1

最好在'@ Formula'的'select'子句中添加括號? – FaithReaper

+0

@FaithReaper權利,謝謝 – aalku