-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathAccountDetailsService.java
33 lines (25 loc) · 1.43 KB
/
AccountDetailsService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.example.security.details;
import com.example.persistence.entity.Account;
import com.example.persistence.repository.AccountRepository;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.stereotype.Service;
import java.util.Optional;
// TODO 4-17 ビジネスロジッククラスであることを示すアノテーションを付加する
// TODO 4-18 UserDetailsServiceインタフェースを実装していることを確認する(変更不要)
public class AccountDetailsService implements UserDetailsService {
private final AccountRepository accountRepository;
// AccountRepositoryをDIする(@Autowired不要)
public AccountDetailsService(AccountRepository accountRepository) {
this.accountRepository = accountRepository;
}
// loadUserByUsername()をオーバーライド
@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
Optional<Account> accountOptional = accountRepository.findByEmail(username);
Account account = accountOptional.orElseThrow(() -> new UsernameNotFoundException("user not found"));
// TODO 4-19 AccountDetailsをnewしてreturnする(コンストラクタにAccountを渡す)
return null;
}
}