質問編集履歴

3

説明分の編集

2019/11/06 16:10

投稿

icezoom
icezoom

スコア36

test CHANGED
File without changes
test CHANGED
@@ -83,47 +83,3 @@
83
83
  エラー内容から外部キー(userId)制約されたデータを自動で消すようにしたいのですが、
84
84
 
85
85
  どのような方法があるのかお聞きしたいです。JPAを使って実装できるかなど…
86
-
87
-
88
-
89
- 現状は下記コードでdeleteを実装しています。
90
-
91
-
92
-
93
- ```Java(service)
94
-
95
- //削除メソッド
96
-
97
- public void deleteUser(long... userIdArray) {
98
-
99
- if(ArrayUtils.isEmpty(userIdArray)) {
100
-
101
- return;
102
-
103
- }
104
-
105
- Arrays.stream(userIdArray).forEach(userId -> userRepository.deleteById(userId));
106
-
107
- }
108
-
109
- ```
110
-
111
-
112
-
113
- ```java(controller)
114
-
115
- //削除メソッド
116
-
117
- @RequestMapping(path = "delete", method = RequestMethod.POST)
118
-
119
- public String delete(UserForm form,Model model) throws Exception {
120
-
121
- userService.deleteUser(form.getUserId());
122
-
123
- return "user";
124
-
125
-
126
-
127
- }
128
-
129
- ```

2

誤字

2019/11/06 16:10

投稿

icezoom
icezoom

スコア36

test CHANGED
File without changes
test CHANGED
@@ -118,7 +118,7 @@
118
118
 
119
119
  public String delete(UserForm form,Model model) throws Exception {
120
120
 
121
- unitService.deleteUser(form.getUserId());
121
+ userService.deleteUser(form.getUserId());
122
122
 
123
123
  return "user";
124
124
 

1

誤字

2019/10/15 02:13

投稿

icezoom
icezoom

スコア36

test CHANGED
File without changes
test CHANGED
@@ -80,7 +80,7 @@
80
80
 
81
81
 
82
82
 
83
- エラー内容から外部キー制約されたデータを自動消すようにしたいのですが、
83
+ エラー内容から外部キー(userId)制約されたデータを自動消すようにしたいのですが、
84
84
 
85
85
  どのような方法があるのかお聞きしたいです。JPAを使って実装できるかなど…
86
86