|
該当頁 | 該当箇所 |
修正刷 |
訂正箇所 |
訂正事項 |
更新日 |
85 |
リスト7.3 9行目 |
未 |
// (2) Basic認証のパスワード
@Value("${zipcode.admin.password") |
// (2) Basic認証のパスワード
@Value("${zipcode.admin.password}") |
2022年2月28日 |
85 |
リスト7.3 下から11行目 |
未 |
String password = authentication.getCredentials().toString(); |
String pswd = authentication.getCredentials().toString(); |
2022年2月28日 |
85 |
リスト7.3 下から9行目 |
未 |
// 入力された name / password をチェックする
if( name.equals(username) && password.equals(password) ){
return new UsernamePasswordAuthenticationToken(name,password,authentication.getAuthorities()); |
// 入力された name / pswd をチェックする
if( username.equals(name) && password.equals(pswd) ){
return new UsernamePasswordAuthenticationToken(name,pswd,authentication.getAuthorities()); |
2022年2月28日 |
|