久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    • <bdo id='aGbpx'></bdo><ul id='aGbpx'></ul>

    <small id='aGbpx'></small><noframes id='aGbpx'>

      <tfoot id='aGbpx'></tfoot>
      <i id='aGbpx'><tr id='aGbpx'><dt id='aGbpx'><q id='aGbpx'><span id='aGbpx'><b id='aGbpx'><form id='aGbpx'><ins id='aGbpx'></ins><ul id='aGbpx'></ul><sub id='aGbpx'></sub></form><legend id='aGbpx'></legend><bdo id='aGbpx'><pre id='aGbpx'><center id='aGbpx'></center></pre></bdo></b><th id='aGbpx'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='aGbpx'><tfoot id='aGbpx'></tfoot><dl id='aGbpx'><fieldset id='aGbpx'></fieldset></dl></div>
    1. <legend id='aGbpx'><style id='aGbpx'><dir id='aGbpx'><q id='aGbpx'></q></dir></style></legend>

      1. PostgreSQL 枚舉和 Java 枚舉之間的休眠映射

        Hibernate mapping between PostgreSQL enum and Java enum(PostgreSQL 枚舉和 Java 枚舉之間的休眠映射)

            <small id='JxkHx'></small><noframes id='JxkHx'>

            • <i id='JxkHx'><tr id='JxkHx'><dt id='JxkHx'><q id='JxkHx'><span id='JxkHx'><b id='JxkHx'><form id='JxkHx'><ins id='JxkHx'></ins><ul id='JxkHx'></ul><sub id='JxkHx'></sub></form><legend id='JxkHx'></legend><bdo id='JxkHx'><pre id='JxkHx'><center id='JxkHx'></center></pre></bdo></b><th id='JxkHx'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='JxkHx'><tfoot id='JxkHx'></tfoot><dl id='JxkHx'><fieldset id='JxkHx'></fieldset></dl></div>
                <tbody id='JxkHx'></tbody>
                • <bdo id='JxkHx'></bdo><ul id='JxkHx'></ul>
                  <tfoot id='JxkHx'></tfoot>

                  <legend id='JxkHx'><style id='JxkHx'><dir id='JxkHx'><q id='JxkHx'></q></dir></style></legend>
                  本文介紹了PostgreSQL 枚舉和 Java 枚舉之間的休眠映射的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  • Spring 3.x、JPA 2.0、Hibernate 4.x、Postgresql 9.x.
                  • 使用我想映射到 Postgresql 枚舉的枚舉屬性處理 Hibernate 映射類.

                  在枚舉列上使用 where 子句進行查詢會引發異常.

                  Querying with a where clause on the enum column throws an exception.

                  org.hibernate.exception.SQLGrammarException: could not extract ResultSet
                  ... 
                  Caused by: org.postgresql.util.PSQLException: ERROR: operator does not exist: movedirection = bytea
                    Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
                  

                  代碼(高度簡化)

                  SQL:

                  create type movedirection as enum (
                      'FORWARD', 'LEFT'
                  );
                  
                  CREATE TABLE move
                  (
                      id serial NOT NULL PRIMARY KEY,
                      directiontomove movedirection NOT NULL
                  );
                  

                  休眠映射類:

                  @Entity
                  @Table(name = "move")
                  public class Move {
                  
                      public enum Direction {
                          FORWARD, LEFT;
                      }
                  
                      @Id
                      @Column(name = "id")
                      @GeneratedValue(generator = "sequenceGenerator", strategy=GenerationType.SEQUENCE)
                      @SequenceGenerator(name = "sequenceGenerator", sequenceName = "move_id_seq")
                      private long id;
                  
                      @Column(name = "directiontomove", nullable = false)
                      @Enumerated(EnumType.STRING)
                      private Direction directionToMove;
                      ...
                      // getters and setters
                  }
                  

                  調用查詢的Java:

                  public List<Move> getMoves(Direction directionToMove) {
                      return (List<Direction>) sessionFactory.getCurrentSession()
                              .getNamedQuery("getAllMoves")
                              .setParameter("directionToMove", directionToMove)
                              .list();
                  }
                  

                  休眠 xml 查詢:

                  <query name="getAllMoves">
                      <![CDATA[
                          select move from Move move
                          where directiontomove = :directionToMove
                      ]]>
                  </query>
                  

                  疑難解答

                  • id 而不是枚舉查詢按預期工作.
                  • 沒有數據庫交互的Java可以正常工作:

                    Troubleshooting

                    • Querying by id instead of the enum works as expected.
                    • Java without database interaction works fine:

                      public List<Move> getMoves(Direction directionToMove) {
                          List<Move> moves = new ArrayList<>();
                          Move move1 = new Move();
                          move1.setDirection(directionToMove);
                          moves.add(move1);
                          return moves;
                      }
                      

                    • createQuery 而不是在 XML 中進行查詢,類似于 findByRating 示例/jpa-enumerated/README.html" rel="noreferrer">Apache 的 JPA 和 Enums via @Enumerated 文檔給出了同樣的例外.
                    • 使用 select * from move where direction = 'LEFT'; 在 psql 中查詢按預期工作.
                    • 硬編碼 where direction = 'FORWARD' 在 XML 的查詢中有效.
                    • .setParameter("direction", direction.name()) 沒有,與 .setString().setText() 相同,異常更改為:

                    • createQuery instead of having the query in XML, similar to the findByRating example in Apache's JPA and Enums via @Enumerated documentation gave the same exception.
                    • Querying in psql with select * from move where direction = 'LEFT'; works as expected.
                    • Hardcoding where direction = 'FORWARD' in the query in the XML works.
                    • .setParameter("direction", direction.name()) does not, same with .setString() and .setText(), exception changes to:

                      Caused by: org.postgresql.util.PSQLException: ERROR: operator does not exist: movedirection = character varying
                      

                      • 自定義 UserType 根據這個接受的答案 https://stackoverflow.com/a/1594020/1090474 以及:

                      • Custom UserType as suggested by this accepted answer https://stackoverflow.com/a/1594020/1090474 along with:

                      @Column(name = "direction", nullable = false)
                      @Enumerated(EnumType.STRING) // tried with and without this line
                      @Type(type = "full.path.to.HibernateMoveDirectionUserType")
                      private Direction directionToMove;
                      

                    • 使用 Hibernate 的 EnumType 進行映射,由評分較高但未接受的答案 https:///stackoverflow.com/a/1604286/1090474 來自與上述相同的問題,以及:

                    • Mapping with Hibernate's EnumType as suggested by a higher rated but not accepted answer https://stackoverflow.com/a/1604286/1090474 from the same question as above, along with:

                      @Type(type = "org.hibernate.type.EnumType",
                          parameters = {
                                  @Parameter(name  = "enumClass", value = "full.path.to.Move$Direction"),
                                  @Parameter(name = "type", value = "12"),
                                  @Parameter(name = "useNamed", value = "true")
                          })
                      

                      在看到 https://stackoverflow.com/a/13241410/1090474 之后,有沒有第二個參數

                      With and without the two second parameters, after seeing https://stackoverflow.com/a/13241410/1090474

                      JPA 2.1 類型轉換器應該不是必需的,但無論如何都不是一個選項,因為我現在使用的是 JPA 2.0.

                      A JPA 2.1 Type Converter shouldn't be necessary, but isn't an option regardless, since I'm on JPA 2.0 for now.

                      推薦答案

                      HQL

                      正確使用別名并使用限定屬性名稱是解決方案的第一部分.

                      HQL

                      Aliasing correctly and using the qualified property name was the first part of the solution.

                      <query name="getAllMoves">
                          <![CDATA[
                              from Move as move
                              where move.directionToMove = :direction
                          ]]>
                      </query>
                      

                      休眠映射

                      @Enumerated(EnumType.STRING) 仍然不起作用,因此需要自定義 UserType.關鍵是正確覆蓋 nullSafeSet 就像在這個答案 https://stackoverflow.com/a/7614642/1090474 和 類似 實現來自網絡.

                      Hibernate mapping

                      @Enumerated(EnumType.STRING) still didn't work, so a custom UserType was necessary. The key was to correctly override nullSafeSet like in this answer https://stackoverflow.com/a/7614642/1090474 and similar implementations from the web.

                      @Override
                      public void nullSafeSet(PreparedStatement st, Object value, int index, SessionImplementor session) throws HibernateException, SQLException {
                          if (value == null) {
                              st.setNull(index, Types.VARCHAR);
                          }
                          else {
                              st.setObject(index, ((Enum) value).name(), Types.OTHER);
                          }
                      }
                      

                      繞道

                      implements ParameterizedType 不合作:

                      org.hibernate.MappingException: type is not parameterized: full.path.to.PGEnumUserType
                      

                      所以我無法像這樣注釋枚舉屬性:

                      so I wasn't able to annotate the enum property like this:

                      @Type(type = "full.path.to.PGEnumUserType",
                              parameters = {
                                      @Parameter(name = "enumClass", value = "full.path.to.Move$Direction")
                              }
                      )
                      

                      相反,我這樣聲明類:

                      public class PGEnumUserType<E extends Enum<E>> implements UserType
                      

                      使用構造函數:

                      public PGEnumUserType(Class<E> enumClass) {
                          this.enumClass = enumClass;
                      }
                      

                      不幸的是,這意味著任何其他類似映射的枚舉屬性都需要這樣的類:

                      which, unfortunately, means any other enum property similarly mapped will need a class like this:

                      public class HibernateDirectionUserType extends PGEnumUserType<Direction> {
                          public HibernateDirectionUserType() {
                              super(Direction.class);
                          }
                      }
                      

                      注釋

                      注釋屬性,你就完成了.

                      Annotation

                      Annotate the property and you're done.

                      @Column(name = "directiontomove", nullable = false)
                      @Type(type = "full.path.to.HibernateDirectionUserType")
                      private Direction directionToMove;
                      

                      其他說明

                      • EnhancedUserType及其要實現的三個方法

                        public String objectToSQLString(Object value)
                        public String toXMLString(Object value)
                        public String objectToSQLString(Object value)
                        

                        我看不出有什么不同,所以我堅持使用 implements UserType.

                        didn't make any difference I could see, so I stuck with implements UserType.

                        這篇關于PostgreSQL 枚舉和 Java 枚舉之間的休眠映射的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                        【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  quot;Char cannot be dereferencedquot; error(“Char 不能被取消引用錯誤)
                  Java Switch Statement - Is quot;orquot;/quot;andquot; possible?(Java Switch 語句 - 是“或/“和可能的?)
                  Java Replace Character At Specific Position Of String?(Java替換字符串特定位置的字符?)
                  What is the type of a ternary expression with int and char operands?(具有 int 和 char 操作數的三元表達式的類型是什么?)
                  Read a text file and store every single character occurrence(讀取文本文件并存儲出現的每個字符)
                  Why do I need to explicitly cast char primitives on byte and short?(為什么我需要在 byte 和 short 上顯式轉換 char 原語?)
                • <i id='9jhQP'><tr id='9jhQP'><dt id='9jhQP'><q id='9jhQP'><span id='9jhQP'><b id='9jhQP'><form id='9jhQP'><ins id='9jhQP'></ins><ul id='9jhQP'></ul><sub id='9jhQP'></sub></form><legend id='9jhQP'></legend><bdo id='9jhQP'><pre id='9jhQP'><center id='9jhQP'></center></pre></bdo></b><th id='9jhQP'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='9jhQP'><tfoot id='9jhQP'></tfoot><dl id='9jhQP'><fieldset id='9jhQP'></fieldset></dl></div>
                  <legend id='9jhQP'><style id='9jhQP'><dir id='9jhQP'><q id='9jhQP'></q></dir></style></legend>

                  • <small id='9jhQP'></small><noframes id='9jhQP'>

                      <tbody id='9jhQP'></tbody>

                      <tfoot id='9jhQP'></tfoot>

                          • <bdo id='9jhQP'></bdo><ul id='9jhQP'></ul>
                            主站蜘蛛池模板: 色婷婷av一区二区三区软件 | 国产成人精品久久二区二区 | 亚洲成人av在线播放 | 午夜av一区二区 | 国产精品视频一 | 久久国产一区二区 | 亚洲一区二区三区高清 | av中文字幕在线观看 | 亚洲精品久 | 亚洲精品久久区二区三区蜜桃臀 | 玖玖视频网 | 91av国产在线视频 | 亚洲精品国产区 | 欧美在线视频一区二区 | 中文字幕电影在线观看 | 亚洲视频 欧美视频 | 日本精品一区二区 | 久久久综合精品 | 成人精品鲁一区一区二区 | 一级黄色片美国 | 成人免费高清 | 一区二区高清在线观看 | 亚洲在线一区二区 | 3p视频在线观看 | 日韩精品一区二区三区视频播放 | 欧美成人精品一区二区男人看 | 亚洲欧美一区二区三区1000 | 午夜视频在线 | 狠狠亚洲 | 成人一区精品 | 日韩精品一区二区三区中文在线 | 午夜影院黄 | 狠狠干五月天 | 国产a级毛片 | 91av视频在线观看 | 成人免费视频 | 少妇性l交大片免费一 | 欧美激情啪啪 | 久久精品在线播放 | 久久综合成人精品亚洲另类欧美 | 中文字幕亚洲一区二区三区 |