91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot JPA中使用@Entity和@Table的實現

發布時間:2020-09-25 15:22:45 來源:腳本之家 閱讀:193 作者:flydean 欄目:編程語言

本文中我們會講解如何在Spring Boot JPA中實現class和數據表格的映射。

默認實現

Spring Boot JPA底層是用Hibernate實現的,默認情況下,數據庫表格的名字是相應的class名字的首字母大寫。命名的定義是通過接口ImplicitNamingStrategy來定義的:

  /**
   * Determine the implicit name of an entity's primary table.
   *
   * @param source The source information
   *
   * @return The implicit table name.
   */
  public Identifier determinePrimaryTableName(ImplicitEntityNameSource source);

我們看下它的實現ImplicitNamingStrategyJpaCompliantImpl:

  @Override
  public Identifier determinePrimaryTableName(ImplicitEntityNameSource source) {
    if ( source == null ) {
      // should never happen, but to be defensive...
      throw new HibernateException( "Entity naming information was not provided." );
    }

    String tableName = transformEntityName( source.getEntityNaming() );

    if ( tableName == null ) {
      // todo : add info to error message - but how to know what to write since we failed to interpret the naming source
      throw new HibernateException( "Could not determine primary table name for entity" );
    }

    return toIdentifier( tableName, source.getBuildingContext() );
  }

如果我們需要修改系統的默認實現,則可以實現接口PhysicalNamingStrategy:

public interface PhysicalNamingStrategy {
  public Identifier toPhysicalCatalogName(Identifier name, JdbcEnvironment jdbcEnvironment);

  public Identifier toPhysicalSchemaName(Identifier name, JdbcEnvironment jdbcEnvironment);

  public Identifier toPhysicalTableName(Identifier name, JdbcEnvironment jdbcEnvironment);

  public Identifier toPhysicalSequenceName(Identifier name, JdbcEnvironment jdbcEnvironment);

  public Identifier toPhysicalColumnName(Identifier name, JdbcEnvironment jdbcEnvironment);
}

使用@Table自定義表格名字

我們可以在@Entity中使用@Table來自定義映射的表格名字:

@Entity
@Table(name = "ARTICLES")
public class Article {
  // ...
}

當然,我們可以將整個名字寫在靜態變量中:

@Entity
@Table(name = Article.TABLE_NAME)
public class Article {
  public static final String TABLE_NAME= "ARTICLES";
  // ...
}

在JPQL Queries中重寫表格名字

通常我們在@Query中使用JPQL時可以這樣用:

@Query(“select * from Article”)

其中Article默認是Entity類的Class名稱,我們也可以這樣來修改它:

@Entity(name = "MyArticle")

這時候我們可以這樣定義JPQL:

@Query(“select * from MyArticle”)

到此這篇關于Spring Boot JPA中使用@Entity和@Table的實現的文章就介紹到這了,更多相關Spring Boot JPA使用@Entity和@Table內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嵩明县| 平和县| 舞钢市| 钟祥市| 塘沽区| 卢龙县| 玛沁县| 府谷县| 淮滨县| 肃宁县| 桂东县| 临汾市| 比如县| 遂川县| 惠州市| 喀什市| 威海市| 南漳县| 宁海县| 上栗县| 西乌| 深水埗区| 漠河县| 团风县| 平度市| 肥西县| 扎鲁特旗| 宜兴市| 廊坊市| 齐齐哈尔市| 韶关市| 中方县| 德清县| 息烽县| 乐平市| 喀什市| 右玉县| 南岸区| 沧州市| 巢湖市| 靖州|