티스토리 뷰

출처: https://ohtanja.tistory.com/m/18

영문/숫자/특수문자 사용
영문, 숫자
영문,  특수문자
특수문자, 숫자
같은문자, 숫자
인지 체크하는 변수를 선언한다.

public static final String p1 = "^(?=.*[A-Za-z])(?=.*[0-9])(?=.*[$@$!%*#?&])[A-Za-z[0-9]$@$!%*#?&]{8,20}$";
public static final String p2 = "^[A-Za-z[0-9]]{10,20}$";
public static final String p3 = "^[[0-9]$@$!%*#?&]{10,20}$";
public static final String p4 = "^[[A-Za-z]$@$!%*#?&]{10,20}$";
public static final String p5 = "(\\w)\\1\\1"; Matcher m;

기존 비밀번호와 새 비밀번호가 같으면 리턴한다.
새 비밀번호의 정규식 패턴을 확인한다.

public boolean passwordChk(String newPassword, String oldPassword, String userId) {
    boolean check = false;
    m =  Pattern.compile(p1).matcher(newPassword); if(m.find()) { check = true; } m = Pattern.compile(p2).matcher(newPassword); if(m.find()) { check = true; } m = Pattern.compile(p3).matcher(newPassword); if(m.find()) { check = true; } m = Pattern.compile(p4).matcher(newPassword); if(m.find()) { chk = true; } if(check) { if(samePwd(newPassword)) { return false; } if(continuousPwd(newPassword)) { return false; } if(newPassword.equals(oldPassword)) { return false; } if(sameId(newPassword, userId)) { return false; } } return true; }

'Skill > spring' 카테고리의 다른 글

SpringBoot 에러 페이지 설정(Custom Error Page)  (0) 2022.12.08
spring boot 404 에러처리  (0) 2022.12.08
404 커스텀 에러 페이지 설정  (0) 2022.11.17
@ConfigurationProperties 사용법  (0) 2022.10.27
[thymeleaf] 문법  (0) 2022.10.12
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함