쿼리 및 에러부분 수정

This commit is contained in:
JSYOO 2021-09-10 15:26:16 +09:00
parent a1b61f5e73
commit 1ba7be7dd4
3 changed files with 4 additions and 3 deletions

View File

@ -662,8 +662,8 @@ public class MemberController extends NlibCommonController{
loginVO.setJoinCouncilCd(getCurCouncilCd(request));
loginVO = loginService.selectLoginUserInfo(loginVO);
String password=egovPasswordEncoder.encryptPassword(loginVO.getLoginUserId()+request.getParameter("password"));
String a=loginVO.getLoginUserId()+request.getParameter("password").trim();
String password=egovPasswordEncoder.encryptPassword(a);
String message="";

View File

@ -103,6 +103,7 @@ public class UserInfoController extends NlibCommonController {
centerList = userInfoService.selectCenterSignUpList(loginVO);
String encodedText=null;
System.out.println(loginVO.getLoginUserId()+vo.getPassword());
encodedText = egovPasswordEncoder.encryptPassword(loginVO.getLoginUserId()+vo.getPassword());
vo.setPassword(encodedText);

View File

@ -109,7 +109,7 @@
AND SNS_USER_ID = #{snsUserId}
AND UNLINK_DD IS NULL
) MB
GROUP BY MB_INFO_ID
LIMIT 1;
</select>
<!-- 회원가입시 입력한 휴대폰번호와 일치하는 계정이 있는지 체크 -->