質問編集履歴
1
抜けている部分があったため修正しました。
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
|
```
|