回答編集履歴

3

注釈のパラメーター

2018/02/17 10:38

投稿

退会済みユーザー
test CHANGED
@@ -54,7 +54,7 @@
54
54
 
55
55
 
56
56
 
57
- @Column
57
+ @Column(name="role_id")
58
58
 
59
59
  int roleId
60
60
 

2

アノテーションについての補足を追記

2018/02/17 10:38

投稿

退会済みユーザー
test CHANGED
@@ -15,3 +15,133 @@
15
15
  insertable = true はインサートするデータ
16
16
 
17
17
  updatable = true はアップデートするデータ
18
+
19
+
20
+
21
+ ### アノテーションの補足
22
+
23
+
24
+
25
+ #### users
26
+
27
+ | column | type |
28
+
29
+ |:--------|:------------|
30
+
31
+ | id | int |
32
+
33
+ | name | varchar(255)|
34
+
35
+ | role_id | int |
36
+
37
+
38
+
39
+ ##### 実装のケース
40
+
41
+
42
+
43
+ ```
44
+
45
+ @Column
46
+
47
+ int id
48
+
49
+
50
+
51
+ @Column
52
+
53
+ String name
54
+
55
+
56
+
57
+ @Column
58
+
59
+ int roleId
60
+
61
+ ```
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+ ```
70
+
71
+ @Column
72
+
73
+ int id
74
+
75
+
76
+
77
+ @Column
78
+
79
+ String name
80
+
81
+
82
+
83
+ @JoinColumn(name="role_id")
84
+
85
+ Role role
86
+
87
+ ```
88
+
89
+
90
+
91
+ は作成されたテーブルの構造(FK 除く)は同一になります。
92
+
93
+ なので
94
+
95
+
96
+
97
+ ```
98
+
99
+ @Column
100
+
101
+ int id
102
+
103
+
104
+
105
+ @Column
106
+
107
+ String name
108
+
109
+
110
+
111
+ @Column
112
+
113
+ int roleId
114
+
115
+
116
+
117
+ @JoinColumn(name="role_id")
118
+
119
+ Role role
120
+
121
+ ```
122
+
123
+
124
+
125
+ と実装すると
126
+
127
+
128
+
129
+ ```
130
+
131
+ CREATE TABLE users (
132
+
133
+ int id primary key
134
+
135
+ name text,
136
+
137
+ role_id int,
138
+
139
+ role_id int
140
+
141
+ )
142
+
143
+ ```
144
+
145
+
146
+
147
+ の解釈になってしまうため、この項目は参照用だよって明示してあげる必要があります。

1

設定値の意味追加

2018/02/17 10:37

投稿

退会済みユーザー
test CHANGED
@@ -3,3 +3,15 @@
3
3
 
4
4
 
5
5
  ということ
6
+
7
+
8
+
9
+ ### 設定値の意味
10
+
11
+ insertable = false はインサートしないデータ
12
+
13
+ updatable = false はアップデートしないデータ
14
+
15
+ insertable = true はインサートするデータ
16
+
17
+ updatable = true はアップデートするデータ