回答編集履歴
1
宣言部のみ
test
CHANGED
@@ -5,3 +5,47 @@
|
|
5
5
|
|
6
6
|
|
7
7
|
そうすることでユーザー情報が認証情報として取得できます。
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
細かい内部実装は公式ドキュメントにもかいてあるので宣言部だけ
|
14
|
+
|
15
|
+
```
|
16
|
+
|
17
|
+
@Service
|
18
|
+
|
19
|
+
public class UserService implements UserDetailsService {
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
@Entity
|
28
|
+
|
29
|
+
@Table(name = "users")
|
30
|
+
|
31
|
+
public class User implements UserDetails {
|
32
|
+
|
33
|
+
```
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
@Override
|
44
|
+
|
45
|
+
protected void configure(AuthenticationManagerBuilder a) throws Exception {
|
46
|
+
|
47
|
+
a.userDetailsService(userService).passwordEncoder(passwordEncoder());
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
```
|