6

次のデータベースモデルがあります

       create table Diary (id bigint NOT NULL AUTO_INCREMENT,
                creationDate TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
                name varchar(255) not null, 
                description text,
                viewtype varchar(255) not null,
                member bigint,
                primary key (id),
                foreign key (member) references Member(id));


       create table Page (id bigint NOT NULL AUTO_INCREMENT,
                creationDate TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
                viewtype varchar(255) not null,
                diary bigint,
                member bigint,
                primary key (id),
                foreign key (diary) references Diary(id),
                foreign key (member) references Member(id));

       create table Comment (id bigint NOT NULL AUTO_INCREMENT,
                postingDate TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
                comment text not null,
                page bigint,
                member bigint,
                primary key (id),
                foreign key (page) references Page(id)
                foreign key (member) references Member(id));

春のJDbcテンプレートを使用しています。

      My interface looks like follows: accountid is the memeberid in the database.

     Collection<Diary> getDiaries(Long accountId);

そして、私の日記は次のようになります。

           public class Diary {
           private Collection<Page> pages;
           private Long id;
           private LocalTime creationDate;
           private String name;
           private String description;
           private ViewType type;
           }

jdbc テンプレートを使用して Diary オブジェクトを準備する場合、クエリがどのように表示されるかを知りたかったのです。1 つのクエリのみを起動し、この Diary オブジェクトを準備することも可能です。これは、同じリクエストに対して複数のクエリを起動することを避けるためです。上記のインターフェイスでは、結合クエリを使用する可能性が非常に高いか、Spring JDBC テンプレート フレームワークを使用してより簡単な方法が可能です。

4

1 に答える 1

3

外部結合を使用して単一のクエリを作成することができます (ここでは、ページがなく、コメントのないページを持つ日記を作成できると想定しています)。

これで、複数のクエリ (ページごとに 1 つ) を実行する代わりに、connection および への外部結合を使用して単一のクエリを実行DiaryPageますComment。以下に示すように、これはダイアリーとページの情報が複数回返されることを意味しますが、複数の DB 呼び出しと少し冗長な情報との間にはトレードオフがあると思います。

 class FullDiaryRowCallbackHandler implements RowCallbackHandler {
    private Collection<Diary> diaries = new ArrayList<Diary>();
    private Diary currentDiary = null;
    private Page currentPage = null;

    public void processRow(ResultSet rs) {
       long diaryId = rs.getLong("d.id");
       if (currentDiary == null || diaryId != currentDiary.getId()) {
          currentDiary = new Diary();
          currentPage = null;
          diaries.add(currentDiary);
          currentDiary.setId(diaryId);
          currentDiary.setCreationDate(toLocalTime(rs.getTimestamp("d.creationDate")));
          currentDiary.setDescription(rs.getString("d.description"));
          ...
       }
       long pageId = rs.getLong("p.id");
       if (!rs.wasNull() && currentPage != null && currentPage.getId() != pageId) {
          currentPage = new Page();
          if (currentDiary.getPages() == null) {
              currentDiary.setPages(new ArrayList<Page>());
          }
          currentDiary.getPages().add(currentPage);
          currentPage.setId(pageId);
          currentPage.setCreationDate(toLocalTime(rs.getTimestamp("p.creationDate")));
          ...
       }
       long commentId = rs.getLong("c.id");
       if (!rs.wasNull() && currentPage != null) {
          Comment comment = new Comment();
          if (currentPage.getComments() == null) {
              currentPage.setComments(new ArrayList<Comment>());
          }
          currentPage.getComments().add(comment);
          comment.setId(commentId);
          comment.setPostingDate(toLocalTime(rs.getTimestamp("c.postingDate")));
          comment.setComment(rs.getString("c.comment"));
       }
    }

    public Collection<Diary> getDiaries() {
       return diaries;
    }
 }

 FullDiaryRowCallbackHandler rowCallbackHandler = new FullDiaryRowCallbackHandler();
 Collection<Diary> result = jdbcTemplate.query(
    "select d.id, " +
           "d.creationDate, " +
           "d.description, " +
           "p.id, " +
           "p.creationDate, " +
           "c.id, " +
           "c.postingDate, " +
           "c.comment " +
      "from Diary d " +
      "left outer join Page p on d.id = p.diary " +
      "left outer join Comment c on p.id = c.page " +
     "where d.member = ? " +
     "order by d.id, p.id, c.id",
    rowCallbackHandler,
    myMemberId);
Collection<Diary> diariesForMember = rowCallbackHandler.getDiaries();

結果セットを処理し、新しいページが返されたときに処理する必要があるため (このorder by節が重要なのはそのためです)、コードは特にきれいではありませんが、Hibernate のようなものが処理するのはそのようなことです。彼らが熱心にフェッチしているときにボンネットの下にいるあなたのために(Hibernateが優れているかどうかは言っていません。発行しているクエリに対して提供する制御にJdbcTemplateを使用するのが好きですが、Hibernate(またはJPA)は多くのことを行いますオブジェクト グラフの作成に関しては、大変な手間がかかります)。

JdbcTemplate#queryも参照してください

編集:

メンバーのすべての日記、ページ、コメントを返すように変更されました。

于 2013-02-26T09:26:11.183 に答える