redis config 수정, 포맷팅

This commit is contained in:
2025-12-09 10:35:09 +09:00
parent 2e6c11ee64
commit f96fa3b8c7
3 changed files with 21 additions and 25 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);