Hibernate命名策略

来源:http://www.cnblogs.com/hvicen/archive/2017/01/24/6345559.html
-Advertisement-
Play Games

hibernate的命名策略,可以減少對資料庫標識符命名的維護,進一步減少這部份命名的重覆性代碼量,以提高維護。 hibernate的命名方式,有兩類,一類是顯式命名,一類是隱式命名。 顯式命名:在映射配置時,設置的資料庫表名,列名等,就是進行顯式命名。 隱式命名:顯式命名一般不是必要的,所以可以選 ...


hibernate的命名策略,可以減少對資料庫標識符命名的維護,進一步減少這部份命名的重覆性代碼量,以提高維護。

hibernate的命名方式,有兩類,一類是顯式命名,一類是隱式命名。

  • 顯式命名:在映射配置時,設置的資料庫表名,列名等,就是進行顯式命名。
  • 隱式命名:顯式命名一般不是必要的,所以可以選擇當不設置名稱,這時就交由hibernate進行隱式命名,另外隱式命名還包括那些不能進行顯式命名的資料庫標識符。介面ImplicitNamingStrategy,就是用於實現隱式命名。
  • 過濾命名:介面PhysicalNamingStrategy,用於對顯式命名或隱式命名進一步過濾處理。

 

示例:

TestTable1Impl.java

@Entity
// 隱式命名錶名
@Table
public class TestTable1Impl {
    //---------------------------------------------------------------
    // Field
    //---------------------------------------------------------------
    
    @Id
    @Column()
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long testId;
    
    @Column(length = 20)
    private String testName;
    
    @ManyToOne
    private TestTable2Impl testForeign;
    
    //---------------------------------------------------------------
    // Method
    //---------------------------------------------------------------

    public Long getId() {
        return testId;
    }

    public void setId(Long id) {
        this.testId = id;
    }
    
    public String getName(){
        return testName;
    }
    
    public void setName(String name){
        this.testName = name;
    }

    public TestTable2Impl getTestForeign() {
        return testForeign;
    }

    public void setTestForeign(TestTable2Impl testForeign) {
        this.testForeign = testForeign;
    }
}

TestTable2Impl.java

@Entity
// 顯式命名錶名
@Table(name = "TestTable2Impl")
public class TestTable2Impl {
    //---------------------------------------------------------------
    // Field
    //---------------------------------------------------------------
    
    @Id
    @Column()
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long testId;
    
    @Column(length = 20)
    private String testName;
    
    //---------------------------------------------------------------
    // Method
    //---------------------------------------------------------------
    
    public Long getId() {
        return testId;
    }

    public void setId(Long id) {
        this.testId = id;
    }
    
    public String getName(){
        return testName;
    }
    
    public void setName(String name){
        this.testName = name;
    }
}

MyImplicitNamingStrategyImpl.java

public class MyImplicitNamingStrategyImpl extends ImplicitNamingStrategyJpaCompliantImpl implements ImplicitNamingStrategy {

    @Override
    public Identifier determinePrimaryTableName(ImplicitEntityNameSource source) {
        Identifier name = super.determinePrimaryTableName(source);
        Identifier result = toStandard(name, "Impl");
        System.out.println("ImplicitNamingStrategy / PrimaryTableName -> \n\t" + name + " => " + result);
        return result;
    }
    
    private Identifier toStandard(Identifier name, String... removeSuffixes){
        if(removeSuffixes == null)
            return name;
        
        if(name == null)
            return null;

        String text = name.getText();
        if(removeSuffixes != null){
            for(String suffix : removeSuffixes){
                if(text.endsWith(suffix))
                    text = text.substring(0, text.length() - suffix.length());
            }
        }
        return new Identifier(text, name.isQuoted());
    }

    @Override
    public Identifier determineJoinTableName(ImplicitJoinTableNameSource source) {
        Identifier name = super.determineJoinTableName(source);
        System.out.println("ImplicitNamingStrategy / JoinTableName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineCollectionTableName(ImplicitCollectionTableNameSource source) {
        Identifier name = super.determineCollectionTableName(source);
        System.out.println("ImplicitNamingStrategy / CollectionTableName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineDiscriminatorColumnName(ImplicitDiscriminatorColumnNameSource source) {
        Identifier name = super.determineDiscriminatorColumnName(source);
        System.out.println("ImplicitNamingStrategy / DiscriminatorColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineTenantIdColumnName(ImplicitTenantIdColumnNameSource source) {
        Identifier name = super.determineTenantIdColumnName(source);
        System.out.println("ImplicitNamingStrategy / TenantIdColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineIdentifierColumnName(ImplicitIdentifierColumnNameSource source) {
        Identifier name = super.determineIdentifierColumnName(source);
        System.out.println("ImplicitNamingStrategy / IdentifierColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineBasicColumnName(ImplicitBasicColumnNameSource source) {
        Identifier name = super.determineBasicColumnName(source);
        System.out.println("ImplicitNamingStrategy / BasicColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineJoinColumnName(ImplicitJoinColumnNameSource source) {
        Identifier name = super.determineJoinColumnName(source);
        final String result;

        if ( source.getNature() == ImplicitJoinColumnNameSource.Nature.ELEMENT_COLLECTION || source.getAttributePath() == null ) {
            result = transformEntityName( source.getEntityNaming() );
        } else {
            result = transformAttributePath( source.getAttributePath() );
        }

        System.out.println("ImplicitNamingStrategy / JoinColumnName -> \n\t" + name + " => " + result);
        return toIdentifier( result, source.getBuildingContext() );
    }

    @Override
    public Identifier determinePrimaryKeyJoinColumnName(ImplicitPrimaryKeyJoinColumnNameSource source) {
        Identifier name = super.determinePrimaryKeyJoinColumnName(source);
        System.out.println("ImplicitNamingStrategy / PrimaryKeyJoinColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineAnyDiscriminatorColumnName(ImplicitAnyDiscriminatorColumnNameSource source) {
        Identifier name = super.determineAnyDiscriminatorColumnName(source);
        System.out.println("ImplicitNamingStrategy / AnyDiscriminatorColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineAnyKeyColumnName(ImplicitAnyKeyColumnNameSource source) {
        Identifier name = super.determineAnyKeyColumnName(source);
        System.out.println("ImplicitNamingStrategy / AnyKeyColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineMapKeyColumnName(ImplicitMapKeyColumnNameSource source) {
        Identifier name = super.determineMapKeyColumnName(source);
        System.out.println("ImplicitNamingStrategy / MapKeyColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineListIndexColumnName(ImplicitIndexColumnNameSource source) {
        Identifier name = super.determineListIndexColumnName(source);
        System.out.println("ImplicitNamingStrategy / ListIndexColumnName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineForeignKeyName(ImplicitForeignKeyNameSource source) {
        Identifier name = super.determineForeignKeyName(source);
        String result = null;
        String tableName = source.getTableName().getText();
        if(tableName.startsWith(TableNamingConfig.TABLE_PREFIX))
            tableName = tableName.substring(TableNamingConfig.TABLE_PREFIX.length());
        if(source.getColumnNames().size() == 1){
            result = TableNamingConfig.FOREIGN_KEY_PREFIX + tableName + "_" + source.getColumnNames().get(0).getText();
        } else  {
            String columnName = source.getReferencedTableName().getText();
            if(columnName.startsWith(TableNamingConfig.TABLE_PREFIX))
                columnName = columnName.substring(TableNamingConfig.TABLE_PREFIX.length());
            result = TableNamingConfig.FOREIGN_KEY_PREFIX + tableName + "_" + columnName;
        }
        System.out.println("ImplicitNamingStrategy / ForeignKeyName -> \n\t" + name + " => " + result);
        return new Identifier(result, name.isQuoted());
    }

    @Override
    public Identifier determineUniqueKeyName(ImplicitUniqueKeyNameSource source) {
        Identifier name = super.determineUniqueKeyName(source);
        System.out.println("ImplicitNamingStrategy / UniqueKeyName -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier determineIndexName(ImplicitIndexNameSource source) {
        Identifier name = super.determineIndexName(source);
        System.out.println("ImplicitNamingStrategy / IndexName -> \n\t" + name);
        return name;
    }

}

MyPhysicalNamingStrategyImpl.java

public class MyPhysicalNamingStrategyImpl implements PhysicalNamingStrategy {

    @Override
    public Identifier toPhysicalCatalogName(Identifier name, JdbcEnvironment jdbcEnvironment) {
        System.out.println("PhysicalNamingStrategy / catalog -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier toPhysicalSchemaName(Identifier name, JdbcEnvironment jdbcEnvironment) {
        System.out.println("PhysicalNamingStrategy / schema -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier toPhysicalTableName(Identifier name, JdbcEnvironment jdbcEnvironment) {
        Identifier result = toStandard(name, "tb_");
        System.out.println("PhysicalNamingStrategy / table -> \n\t" + name + " => " + result);
        return result;
    }

    @Override
    public Identifier toPhysicalSequenceName(Identifier name, JdbcEnvironment jdbcEnvironment) {
        System.out.println("PhysicalNamingStrategy / sequence -> \n\t" + name);
        return name;
    }

    @Override
    public Identifier toPhysicalColumnName(Identifier name, JdbcEnvironment jdbcEnvironment) {
        Identifier result = toStandard(name);
        System.out.println("PhysicalNamingStrategy / column -> \n\t" + name + " => " + result);
        return result;
    }
    
    private Identifier toStandard(Identifier name){
        return toStandard(name, null);
    }
    
    private Identifier toStandard(Identifier name, String prefix){
        if(name == null)
            return null;

        String text = name.getText();
        StringBuffer buffer = new StringBuffer();
        if(prefix != null)
            buffer.append(prefix);
        
        char[] chars = text.toCharArray();
        for(int i=0, len=chars.length; i<len; i++){
            char c1 = chars[i];
            if(c1 >= 'A' && c1 <= 'Z'){
                if(i > 0 && i + 1 < len){
                    if(chars[i + 1] < 'A' || chars[i + 1] > 'Z')
                        buffer.append('_');
                }
                c1 = (char) (c1 - 'A' + 'a');
            }
            buffer.append(c1);
        }
        return new Identifier(buffer.toString(), name.isQuoted());
    }

}

TableNamingConfig.java

public class TableNamingConfig {
    public static final String TABLE_PREFIX = "tb_";
    public static final String FOREIGN_KEY_PREFIX = "fk_";
}

spring.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-4.1.xsd">

    <!-- 配置數據源 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/test?useSSL=false"></property>
        <property name="user" value="root"></property>
        <property name="password" value="123456"></property>
    </bean>
    
    <bean id="physicalNamingStrategy" class="test.MyPhysicalNamingStrategyImpl"></bean>
    <bean id="implicitNamingStrategy" class="test.MyImplicitNamingStrategyImpl"></bean>

    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="packagesToScan">
            <list>
                <!-- 可以加多個包 -->
                <value>test</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.hbm2ddl.auto">create-drop</prop>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.format_sql">true</prop>
                <prop key="hibernate.temp.use_jdbc_metadata_defaults">false</prop>
            </props>
        </property>
        <property name="physicalNamingStrategy" ref="physicalNamingStrategy"></property>
        <property name="implicitNamingStrategy" ref="implicitNamingStrategy"></property>
    </bean>
</beans>

Test.java

public class Test {
    public static void main(String[] params){
        // 命名策略
        new Test().test();
        /*
            PhysicalNamingStrategy / catalog -> 
                null
            PhysicalNamingStrategy / catalog -> 
                null
            PhysicalNamingStrategy / column -> 
                DTYPE => dtype
            ImplicitNamingStrategy / PrimaryTableName -> 
                TestTable1Impl => TestTable1
            PhysicalNamingStrategy / table -> 
                TestTable1 => tb_test_table1
            ImplicitNamingStrategy / BasicColumnName -> 
                testId
            PhysicalNamingStrategy / column -> 
                testId => test_id
            ImplicitNamingStrategy / BasicColumnName -> 
                testId
            ImplicitNamingStrategy / BasicColumnName -> 
                testForeign
            PhysicalNamingStrategy / column -> 
                testForeign => test_foreign
            ImplicitNamingStrategy / BasicColumnName -> 
                testName
            PhysicalNamingStrategy / column -> 
                testName => test_name
            ImplicitNamingStrategy / BasicColumnName -> 
                testName
            PhysicalNamingStrategy / column -> 
                DTYPE => dtype
            PhysicalNamingStrategy / table -> 
                TestTable2Impl => tb_test_table2_impl
            ImplicitNamingStrategy / BasicColumnName -> 
                testId
            PhysicalNamingStrategy / column -> 
                testId => test_id
            ImplicitNamingStrategy / BasicColumnName -> 
                testId
            ImplicitNamingStrategy / BasicColumnName -> 
                testName
            PhysicalNamingStrategy / column -> 
                testName => test_name
            ImplicitNamingStrategy / BasicColumnName -> 
                testName
            ImplicitNamingStrategy / JoinColumnName -> 
                testForeign_testId => testForeign
            PhysicalNamingStrategy / column -> 
                testForeign => test_foreign
            ImplicitNamingStrategy / ForeignKeyName -> 
                FKlnurug7wfle1u6fc5oulnrx94 => fk_test_table1_test_foreign
                
            Hibernate: 
                alter table tb_test_table1 
                   drop 
                   foreign key fk_test_table1_test_foreign
                   
            Hibernate: 
                drop table if exists tb_test_table1
                
            Hibernate: 
                drop table if exists tb_test_table2_impl
                
            Hibernate: 
                create table tb_test_table1 (
                   test_id bigint not null auto_increment,
                    test_name varchar(20),
                    test_foreign bigint,
                    primary key (test_id)
                )
                
            Hibernate: 
                create table tb_test_table2_impl (
                   test_id bigint not null auto_increment,
                    test_name varchar(20),
                    primary key (test_id)
                )
                
            Hibernate: 
                alter table tb_test_table1 
                   add constraint fk_test_table1_test_foreign 
                   foreign key (test_foreign) 
                   references tb_test_table2_impl (test_id)
                   
            Hibernate: 
                alter table tb_test_table1 
                   drop 
                   foreign key fk_test_table1_test_foreign
                   
            Hibernate: 
                drop table if exists tb_test_table1
                
            Hibernate: 
                drop table if exists tb_test_table2_impl
         */
    }

    public void test(){
        ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml", this.getClass());
        SessionFactory factory = null;
        try {
            factory = (SessionFactory) context.getBean("sessionFactory");
        } finally {
            if(factory != null){
                factory.close();
                factory = null;
            }
        }
    }
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • js 中用$('#addUserForm').serialize(),//獲取表單中所有數據 傳送到前臺 (controller) $.ajax({ type : "POST", url : $.el.Register.AppUrl + "path", data :$('#addUserForm') ...
  • 本文介紹使用Mybatis攔截器,實現分頁;並且在dao層,直接返回自定義的分頁對象。 最終dao層結果: 接下來一步一步來實現分頁。 一.創建Page對象: 可以發現,這裡繼承了一個PageList類;這個類也是自己創建的一個類,實現List介面。為什麼要PageList這個類,是因為Page需要 ...
  • 以前如果需要讓網頁過幾秒自動刷新一次,我都會在頁面通過JS調用setTimeout來做,最近發現原來伺服器通過添加響應頭部信息來提示瀏覽器需要在多少時間之後重新載入頁面。 代碼很簡單: 上述代碼指定瀏覽器在5秒後重新載入當前頁面。 需要註意的是,單位是秒。 這種方式未必就比JS的方式更有優勢,但是至 ...
  • 1、問題描述 原開發環境:Win7 64位旗艦版,VS2010,ThinkPad T460 出現問題:自己開發的MFC程式在WinXP環境下無法正常運行,彈框“無法定位程式輸入點InitializeConditionVariable於動態鏈接庫kernel32.dll” 重新搭建開發環境:WinXP ...
  • 簡介 該頭文件包含兩個概念相似的容器 map 、 multimap 。 而這兩個容器反映的概念就是 映射 。 這兩個容器 相同 的屬性有: 關聯性 映射 動態增長 鍵(Key)唯一性 這兩個 不相同 的屬性是: 映射關係 ![][maps image] 容器類別 既然說到關聯性容器,自然得說說標準庫 ...
  • 請實現一個函數,將一個字元串中的空格替換成“%20”。例如,當字元串為We Are Happy.則經過替換之後的字元串為We%20Are%20Happy。 以下是java.lang.StringBuilder.replace()方法的聲明 參數 start -- 這是開始索引(包括)。 end -- ...
  • 前段時間在想Kafka怎麼監控、怎麼知道生產的消息或消費的消費是否有丟失,目前有幾個開源的Kafka監控框架這裡整理了下,不過這幾個框架都有各自的問題側重點不一樣; 1、Kafka Monitor 2、Availability Monitor for Kafka 3、Kafka Web Consol ...
  • 在 github 發現一個 Ansible 任務計時插件“ansible-profile”,安裝這個插件後會顯示 ansible-playbook 執行每一個任務所花費的時間。Github 地址: https://github.com/jlafon/ansible-profile 。 這個插件安裝很 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...