Spring boot kim's Shop/문자인증 2

Springboot Jwt+휴대폰인증!(2) 인증번호 확인

버그+효율성 때문에 리팩토링 하였습니다 https://cordingmonster.tistory.com/131 Springboot 인증 시스템 리팩토링!(1) with interface 이전 글 https://cordingmonster.tistory.com/108?category=1038496 Springboot Jwt+휴대폰인증!(2) 인증번호 확인 이제 인증번호가 맞는지 안 맞는지 판별해보자 프런트 js json형태로 번호/입력 전송 let dat.. cordingmonster.tistory.com 이제 인증번호가 맞는지 안 맞는지 판별해보자 프런트 js json형태로 번호/입력 전송 let data=JSON.stringify({ "phoneNum":""+document.getElementById('p..

Spring boot Jwt+휴대폰인증!(1) with Coolsms

버그+효율성 때문에 리팩토링 하였습니다 https://cordingmonster.tistory.com/132?category=1041862 세션에 번호/인증번호/여부 저장 ->인증 확인 후-> 세션 여부 TRUE로 변환 하려 했으나 포트 번호가 달라서 그런지 인증번호 요청 후-> 번호 제출했을 때 ->세션이 null이었다 2.db이용 그래서 인증 db를 만들어서 인증번호 요청-> db저장-> 인증번호 비교-> db true로 변환 이렇게 구현했다 출발해 보자! confrimDto 이메일 인증 구현도 같이 사용할 예정이다 하루 횟수 제한을 두기 위해 인증 요청 회수 기록 @Column(name="requesttime",nullable = false,length = 2) @ColumnDefault("1") ..