我正在使用hibernate的ORM和hibernate-generator以注释方式生成Entity。我需要经常切换数据库(开发/发布)。因此,我必须每次都更改实体的注释。我想知道是否可以配置它。

@Entity
@Table(name = "my", catalog = "dev_db")
public class MyEntity {

}

如您所见,我每次都要更改目录。如何根据jdbc.properties进行配置?

最佳答案

您可以使用拦截器来修改由休眠生成的SQL。

public String onPrepareStatement(String sql) {
    String superSQL = super.onPrepareStatement(newSQLWithNamespace);
    //replace all catalog occurencies with desired value in the superSQL
    return superSQL;
}

参见例如Add a column to all MySQL Select Queries in a single shot

您的拦截器可以从config中读取目录值并更改SQL。

09-11 18:58