teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

抜けている部分があったため修正しました。

2020/06/29 11:54

投稿

yys949
yys949

スコア9

title CHANGED
File without changes
body CHANGED
@@ -99,6 +99,11 @@
99
99
  return new BCryptPasswordEncoder();
100
100
  }
101
101
 
102
+ @Autowired
103
+ public void configure(AuthenticationManagerBuilder auth) throws Exception{
104
+ auth.userDetailsService(userDetailsService).passwordEncoder(passwordEncoder());
105
+    }
106
+
102
107
  }
103
108
 
104
109
  ```