쿼리 및 에러부분 수정
This commit is contained in:
parent
a1b61f5e73
commit
1ba7be7dd4
@ -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="";
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
|
||||
@ -109,7 +109,7 @@
|
||||
AND SNS_USER_ID = #{snsUserId}
|
||||
AND UNLINK_DD IS NULL
|
||||
) MB
|
||||
GROUP BY MB_INFO_ID
|
||||
LIMIT 1;
|
||||
</select>
|
||||
|
||||
<!-- 회원가입시 입력한 휴대폰번호와 일치하는 계정이 있는지 체크 -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user