質問編集履歴

2

誤字などの修正

2020/08/19 12:37

投稿

gnuuu_07
gnuuu_07

スコア10

test CHANGED
File without changes
test CHANGED
@@ -56,33 +56,33 @@
56
56
 
57
57
 
58
58
 
59
- @RequestMapping("/getParentCategories")
59
+ @RequestMapping("/getParent")
60
60
 
61
- public Map<Integer, String> getParentCategories(Integer ancestorId) {
61
+ public Map<Integer, String> getParent(Integer id) {
62
62
 
63
-      List<Category> parentCategoryList = categoryService.getParentCategories(id);
63
+      List<Category> parentList = categoryService.getParent(id);
64
64
 
65
65
  //以下長いので省略します
66
66
 
67
67
 
68
68
 
69
- return parentCategoryMap;
69
+ return parentMap;
70
70
 
71
71
  }
72
72
 
73
73
 
74
74
 
75
- @RequestMapping("/getChildCategories")
75
+ @RequestMapping("/getChild")
76
76
 
77
- public Map<Integer, String> getChildCategories(String parentCategoryName, Integer ancestorId) {
77
+ public Map<Integer, String> getChild(String name, Integer id) {
78
78
 
79
- List<Category> childCategoryList = categoryService.getChildCategories(name, id);
79
+ List<Category> childList = categoryService.getChild(name, id);
80
80
 
81
81
  //以下長いので省略します
82
82
 
83
83
 
84
84
 
85
- return childCategoryMap;
85
+ return childMap;
86
86
 
87
87
  }
88
88
 
@@ -100,4 +100,4 @@
100
100
 
101
101
  ### 追記
102
102
 
103
- ブラウザのコンソールにはログイン時のみPOST http://localhost:8080/ajax/getParentCategories 403 が表示されます。ログインしていない場合は何も表示されません。しかし、ログインしていてもしていなくてもajaxは動きません。
103
+ ブラウザのコンソールにはログイン時のみPOST http://localhost:8080/ajax/getParent 403 が表示されます。ログインしていない場合は何も表示されません。しかし、ログインしていてもしていなくてもajaxは動きません。

1

ブラウザのコンソールに表示される内容を追記しました。

2020/08/19 12:37

投稿

gnuuu_07
gnuuu_07

スコア10

test CHANGED
File without changes
test CHANGED
@@ -95,3 +95,9 @@
95
95
  Config内のantMatchersでAjaxのパスを指定しているのですが、動かずに困っています。
96
96
 
97
97
  よろしくお願いいたします。
98
+
99
+
100
+
101
+ ### 追記
102
+
103
+ ブラウザのコンソールにはログイン時のみPOST http://localhost:8080/ajax/getParentCategories 403 が表示されます。ログインしていない場合は何も表示されません。しかし、ログインしていてもしていなくてもajaxは動きません。