1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

javaのentityクラス、modelクラス、dtoクラスの使い分け

Last updated at Posted at 2023-10-24

entityクラス

  • DBのテーブルから取得した1レコード
  • SQLで加工をしていない生データ
  • SELECT * FROM テーブル名 WHERE 何か条件;
    で取れて来るデータ
    (WHERE句は無くてもOK)

modelクラス

  • DBのテーブルから取得したデータ
  • SQLで取得データを加工している
  • SELECT SUM(カラム名) FROM テーブル名;
    とか、
    SELECT カラム1, カラム3, カラム5 FROM テーブル名;
    みたいに、カラムを指定して取得されたデータ

dtoクラス

  • ただの入れ物
  • 変数の塊みたいな
  • 必ずしも「DBから取ってきたデータ」というわけではない
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?