redis config 수정

This commit is contained in:
2025-12-09 10:33:31 +09:00
parent a287ccd91a
commit 2e6c11ee64
3 changed files with 36 additions and 52 deletions

View File

@@ -52,7 +52,7 @@ public class MembersService {
// salt 생성, 사번이 salt
String salt =
BCryptSaltGenerator.generateSaltWithEmployeeNo(updateReq.getEmployeeNo().trim());
BCryptSaltGenerator.generateSaltWithEmployeeNo(updateReq.getEmployeeNo().trim());
// 패스워드 암호화, 초기 패스워드 고정
String hashedPassword = BCrypt.hashpw(updateReq.getPassword(), salt);