Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
@332c9f458ac359c74c55db4ebfd61937777c7be4
--- src/main/java/itn/let/uat/uia/web/EgovMypageController.java
+++ src/main/java/itn/let/uat/uia/web/EgovMypageController.java
... | ... | @@ -2956,8 +2956,17 @@ |
| 2956 | 2956 |
System.out.println("test Try +++ ");
|
| 2957 | 2957 |
|
| 2958 | 2958 |
// secuLoginFlag 값을 Model에 추가 |
| 2959 |
- model.addAttribute("secuLoginFlag", mberCertLoginLogVO.getSecuLoginFlag());
|
|
| 2960 |
- |
|
| 2959 |
+ if(mberCertLoginLogVO == null) {
|
|
| 2960 |
+ model.addAttribute("secuLoginFlag", "");
|
|
| 2961 |
+ }else {
|
|
| 2962 |
+ model.addAttribute("secuLoginFlag", mberCertLoginLogVO.getSecuLoginFlag());
|
|
| 2963 |
+ } |
|
| 2964 |
+ |
|
| 2965 |
+ } catch (Exception e) {
|
|
| 2966 |
+ e.printStackTrace(); |
|
| 2967 |
+ // TODO: handle exception |
|
| 2968 |
+ } |
|
| 2969 |
+ |
|
| 2961 | 2970 |
//로그인 권한정보 불러오기 |
| 2962 | 2971 |
String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); |
| 2963 | 2972 |
|
... | ... | @@ -3043,11 +3052,6 @@ |
| 3043 | 3052 |
// 탭 하이라이트 |
| 3044 | 3053 |
model.addAttribute("certLogRegDate", certLogRegDate);
|
| 3045 | 3054 |
|
| 3046 |
- } catch (Exception e) {
|
|
| 3047 |
- e.printStackTrace(); |
|
| 3048 |
- // TODO: handle exception |
|
| 3049 |
- } |
|
| 3050 |
- |
|
| 3051 | 3055 |
return "web/user/mberSecureLogin"; |
| 3052 | 3056 |
} |
| 3053 | 3057 |
|
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?