->Spring Security이용해서 암호화는 자세한 방법(설명)은 Spring 설정 카테고리란에 작성돼있습니다.
링크: [Spring Security]BCryptPasswordEncoder 사용해서 사용자의 비밀번호를 암호화 하는법 (tistory.com)
#ILoginService.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
|
package com.example.login.service;
import java.util.List;
import com.example.login.vo.UserVO;
public interface ILoginService {
//회원정보 등록
void insert(UserVO vo);
//아이디 중복확인
int checkId(String id);
//회원 탈퇴
void delete(String id);
//회원정보 조회
UserVO getUser(String id);
//회원정보 전체조회
List<UserVO> getAllUser();
}
|
cs |
#LoginService.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
package com.example.login.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.stereotype.Service;
import com.example.login.repository.IUserMapper;
import com.example.login.vo.UserVO;
@Service
public class LoginService implements ILoginService {
@Autowired
IUserMapper mapper;
@Override
public void insert(UserVO vo) {
BCryptPasswordEncoder encoder = new BCryptPasswordEncoder();
System.out.println("암호화 전: " + vo.getPassword());
String securePw = encoder.encode(vo.getPassword());
vo.setPassword(securePw);
System.out.println("암호화 후: " + securePw);
mapper.insert(vo);
}
@Override
public int checkId(String id) {
return mapper.checkId(id);
}
@Override
public void delete(String id) {
mapper.delete(id);
}
@Override
public UserVO getUser(String id) {
return mapper.getUser(id);
}
@Override
public List<UserVO> getAllUser() {
return null;
}
}
|
cs |
'Spring Boot 개인 프로젝트 > 회원관리 REST-API서버 구축' 카테고리의 다른 글
(6) 지금까지 구축한 REST API가 잘 작동하는지 Postman을 사용하여 테스트 해보기 (0) | 2021.09.20 |
---|---|
(5) REST API 구축 (0) | 2021.09.20 |
(3) IUserMapper 인터페이스 와 UserMapper.xml 생성 (0) | 2021.09.20 |
(2) UserVO클래스 생성 (0) | 2021.09.20 |
(1) 회원정보를 관리할 DB설계 (0) | 2021.09.20 |