回答編集履歴

2

誤字修正

2020/08/26 09:30

投稿

ihigaku
ihigaku

スコア71

test CHANGED
@@ -28,7 +28,7 @@
28
28
 
29
29
  @GetMapping("/alphaSets")
30
30
 
31
- public Page<AlphaSet> getAll(@RequestParam(value = "table", required = true) final String table,
31
+ public Page<AlphaSet> getAlphaSet(@RequestParam(value = "table", required = true) final String table,
32
32
 
33
33
  @PageableDefault(page = 0, size = 10, direction = Direction.ASC, sort = { "id" }) final Pageable pageable) {
34
34
 
@@ -40,7 +40,7 @@
40
40
 
41
41
  @GetMapping("/bravoSets")
42
42
 
43
- public Page<BravoSet> getAll(@RequestParam(value = "table", required = true) final String table,
43
+ public Page<BravoSet> getBravoSet(@RequestParam(value = "table", required = true) final String table,
44
44
 
45
45
  @PageableDefault(page = 0, size = 10, direction = Direction.ASC, sort = { "id" }) final Pageable pageable) {
46
46
 

1

誤字修正

2020/08/26 09:30

投稿

ihigaku
ihigaku

スコア71

test CHANGED
@@ -1,5 +1,3 @@
1
- スーパークラス云々はよく分かりませんが・・
2
-
3
1
  > URLクエリパラメータにより問い合わせ先を変更したい
4
2
 
5
3