--- base/src/main/java/egovframework/com/cop/cmy/web/EgovBBSManageController.java
+++ base/src/main/java/egovframework/com/cop/cmy/web/EgovBBSManageController.java
... | ... | @@ -109,7 +109,7 @@ |
| 109 | 109 |
//게시물에 대한 목록을 조회한다. |
| 110 | 110 |
@RequestMapping(value = "/cop/cmy/bbs/selectBoardList.do") |
| 111 | 111 |
public String selectBoardArticles(@ModelAttribute("searchVO") BoardVO boardVO, ModelMap model, HttpServletRequest request, HttpServletResponse response) throws Exception {
|
| 112 |
- |
|
| 112 |
+ |
|
| 113 | 113 |
PaginationInfo paginationInfo = new PaginationInfo(); |
| 114 | 114 |
|
| 115 | 115 |
BoardMasterVO vo = new BoardMasterVO(); |
... | ... | @@ -775,7 +775,7 @@ |
| 775 | 775 |
if(!EgovUserDetailsHelper.isAuthenticated(request, response)) {
|
| 776 | 776 |
return "redirect:" + EgovUserDetailsHelper.getRedirectLoginUrl(); |
| 777 | 777 |
} |
| 778 |
- |
|
| 778 |
+ |
|
| 779 | 779 |
LoginVO user = EgovUserDetailsHelper.getAuthenticatedUser(request, response); |
| 780 | 780 |
|
| 781 | 781 |
BoardMasterVO vo = new BoardMasterVO(); |
--- base/src/main/java/egovframework/com/cop/com/service/impl/EgovUserInfManageServiceImpl.java
+++ base/src/main/java/egovframework/com/cop/com/service/impl/EgovUserInfManageServiceImpl.java
... | ... | @@ -13,115 +13,71 @@ |
| 13 | 13 |
import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl; |
| 14 | 14 |
|
| 15 | 15 |
|
| 16 |
-/** |
|
| 17 |
- * 협업에서 사용할 사용자 조회 서비스 기능 구현 클래스 |
|
| 18 |
- * @author 공통서비스개발팀 이삼섭 |
|
| 19 |
- * @since 2009.06.01 |
|
| 20 |
- * @version 1.0 |
|
| 21 |
- * @see |
|
| 22 |
- * |
|
| 23 |
- * <pre> |
|
| 24 |
- * << 개정이력(Modification Information) >> |
|
| 25 |
- * |
|
| 26 |
- * 수정일 수정자 수정내용 |
|
| 27 |
- * ------- -------- --------------------------- |
|
| 28 |
- * 2009.4.6 이삼섭 최초 생성 |
|
| 29 |
- * |
|
| 30 |
- * </pre> |
|
| 31 |
- */ |
|
| 32 | 16 |
@Service("EgovUserInfManageService")
|
| 33 | 17 |
public class EgovUserInfManageServiceImpl extends EgovAbstractServiceImpl implements EgovUserInfManageService {
|
| 34 | 18 |
|
| 35 |
- /** |
|
| 36 |
- * @uml.property name="userInfDAO" |
|
| 37 |
- * @uml.associationEnd readOnly="true" |
|
| 38 |
- */ |
|
| 39 | 19 |
@Resource(name = "EgovUserInfManageDAO") |
| 40 | 20 |
private EgovUserInfManageDAO userInfDAO; |
| 41 | 21 |
|
| 42 |
- /** |
|
| 43 |
- * 동호회 운영자 목록을 조회한다. |
|
| 44 |
- * |
|
| 45 |
- * @see egovframework.com.cop.com.service.EgovUserInfManageService#selectClubOprtrList(egovframework.com.cop.com.service.UserInfVO) |
|
| 46 |
- */ |
|
| 22 |
+ //동호회 운영자 목록을 조회한다. |
|
| 47 | 23 |
public Map<String, Object> selectClubOprtrList(UserInfVO userVO) throws Exception {
|
| 48 |
- List<UserInfVO> result = userInfDAO.selectClubOprtrList(userVO); |
|
| 49 |
- int cnt = userInfDAO.selectClubOprtrListCnt(userVO); |
|
| 50 |
- |
|
| 51 |
- Map<String, Object> map = new HashMap<String, Object>(); |
|
| 52 |
- |
|
| 53 |
- map.put("resultList", result);
|
|
| 54 |
- map.put("resultCnt", Integer.toString(cnt));
|
|
| 24 |
+ List<UserInfVO> result = userInfDAO.selectClubOprtrList(userVO); |
|
| 25 |
+ int cnt = userInfDAO.selectClubOprtrListCnt(userVO); |
|
| 26 |
+ |
|
| 27 |
+ Map<String, Object> map = new HashMap<String, Object>(); |
|
| 28 |
+ |
|
| 29 |
+ map.put("resultList", result);
|
|
| 30 |
+ map.put("resultCnt", Integer.toString(cnt));
|
|
| 55 | 31 |
|
| 56 | 32 |
return map; |
| 57 | 33 |
} |
| 58 | 34 |
|
| 59 |
- /** |
|
| 60 |
- * 동호회 사용자 목록을 조회한다. |
|
| 61 |
- * |
|
| 62 |
- * @see egovframework.com.cop.com.service.EgovUserInfManageService#selectClubUserList(egovframework.com.cop.com.service.UserInfVO) |
|
| 63 |
- */ |
|
| 35 |
+ //동호회 사용자 목록을 조회한다. |
|
| 64 | 36 |
public Map<String, Object> selectClubUserList(UserInfVO userVO) throws Exception {
|
| 65 |
- List<UserInfVO> result = userInfDAO.selectClubUserList(userVO); |
|
| 66 |
- int cnt = userInfDAO.selectClubUserListCnt(userVO); |
|
| 67 |
- |
|
| 68 |
- Map<String, Object> map = new HashMap<String, Object>(); |
|
| 69 |
- |
|
| 70 |
- map.put("resultList", result);
|
|
| 71 |
- map.put("resultCnt", Integer.toString(cnt));
|
|
| 37 |
+ List<UserInfVO> result = userInfDAO.selectClubUserList(userVO); |
|
| 38 |
+ int cnt = userInfDAO.selectClubUserListCnt(userVO); |
|
| 39 |
+ |
|
| 40 |
+ Map<String, Object> map = new HashMap<String, Object>(); |
|
| 41 |
+ |
|
| 42 |
+ map.put("resultList", result);
|
|
| 43 |
+ map.put("resultCnt", Integer.toString(cnt));
|
|
| 72 | 44 |
|
| 73 | 45 |
return map; |
| 74 | 46 |
} |
| 75 | 47 |
|
| 76 |
- /** |
|
| 77 |
- * 커뮤니티 관리자 목록을 조회한다. |
|
| 78 |
- * |
|
| 79 |
- * @see egovframework.com.cop.com.service.EgovUserInfManageService#selectCmmntyMngrList(egovframework.com.cop.com.service.UserInfVO) |
|
| 80 |
- */ |
|
| 48 |
+ //커뮤니티 관리자 목록을 조회한다. |
|
| 81 | 49 |
public Map<String, Object> selectCmmntyMngrList(UserInfVO userVO) throws Exception {
|
| 82 |
- List<UserInfVO> result = userInfDAO.selectCmmntyMngrList(userVO); |
|
| 83 |
- int cnt = userInfDAO.selectCmmntyMngrListCnt(userVO); |
|
| 84 |
- |
|
| 85 |
- Map<String, Object> map = new HashMap<String, Object>(); |
|
| 86 |
- |
|
| 87 |
- map.put("resultList", result);
|
|
| 88 |
- map.put("resultCnt", Integer.toString(cnt));
|
|
| 50 |
+ List<UserInfVO> result = userInfDAO.selectCmmntyMngrList(userVO); |
|
| 51 |
+ int cnt = userInfDAO.selectCmmntyMngrListCnt(userVO); |
|
| 89 | 52 |
|
| 90 |
- return map; |
|
| 53 |
+ Map<String, Object> map = new HashMap<String, Object>(); |
|
| 54 |
+ |
|
| 55 |
+ map.put("resultList", result);
|
|
| 56 |
+ map.put("resultCnt", Integer.toString(cnt));
|
|
| 57 |
+ |
|
| 58 |
+ return map; |
|
| 91 | 59 |
} |
| 92 | 60 |
|
| 93 |
- /** |
|
| 94 |
- * 커뮤니티 사용자 목록을 조회한다. |
|
| 95 |
- * |
|
| 96 |
- * @see egovframework.com.cop.com.service.EgovUserInfManageService#selectCmmntyUserList(egovframework.com.cop.com.service.UserInfVO) |
|
| 97 |
- */ |
|
| 61 |
+ //커뮤니티 사용자 목록을 조회한다. |
|
| 98 | 62 |
public Map<String, Object> selectCmmntyUserList(UserInfVO userVO) throws Exception {
|
| 99 |
- List<UserInfVO> result = userInfDAO.selectCmmntyUserList(userVO); |
|
| 100 |
- int cnt = userInfDAO.selectCmmntyUserListCnt(userVO); |
|
| 101 |
- |
|
| 102 |
- Map<String, Object> map = new HashMap<String, Object>(); |
|
| 103 |
- |
|
| 104 |
- map.put("resultList", result);
|
|
| 105 |
- map.put("resultCnt", Integer.toString(cnt));
|
|
| 63 |
+ List<UserInfVO> result = userInfDAO.selectCmmntyUserList(userVO); |
|
| 64 |
+ int cnt = userInfDAO.selectCmmntyUserListCnt(userVO); |
|
| 106 | 65 |
|
| 107 |
- return map; |
|
| 66 |
+ Map<String, Object> map = new HashMap<String, Object>(); |
|
| 67 |
+ |
|
| 68 |
+ map.put("resultList", result);
|
|
| 69 |
+ map.put("resultCnt", Integer.toString(cnt));
|
|
| 70 |
+ |
|
| 71 |
+ return map; |
|
| 108 | 72 |
} |
| 109 | 73 |
|
| 110 |
- /** |
|
| 111 |
- * 동호회에 대한 모든 사용자 목록을 조회한다. |
|
| 112 |
- * |
|
| 113 |
- * @see egovframework.com.cop.com.service.EgovUserInfManageService#selectAllClubUser(egovframework.com.cop.com.service.UserInfVO) |
|
| 114 |
- */ |
|
| 74 |
+ //동호회에 대한 모든 사용자 목록을 조회한다. |
|
| 115 | 75 |
public List<UserInfVO> selectAllClubUser(UserInfVO userVO) throws Exception {
|
| 116 |
- return userInfDAO.selectAllClubUser(userVO); |
|
| 76 |
+ return userInfDAO.selectAllClubUser(userVO); |
|
| 117 | 77 |
} |
| 118 | 78 |
|
| 119 |
- /** |
|
| 120 |
- * 커뮤니티에 대한 모든 사용자 목록을 조회한다. |
|
| 121 |
- * |
|
| 122 |
- * @see egovframework.com.cop.com.service.EgovUserInfManageService#selectAllCmmntyUser(egovframework.com.cop.com.service.UserInfVO) |
|
| 123 |
- */ |
|
| 79 |
+ //커뮤니티에 대한 모든 사용자 목록을 조회한다. |
|
| 124 | 80 |
public List<UserInfVO> selectAllCmmntyUser(UserInfVO userVO) throws Exception {
|
| 125 |
- return userInfDAO.selectAllCmmntyUser(userVO); |
|
| 81 |
+ return userInfDAO.selectAllCmmntyUser(userVO); |
|
| 126 | 82 |
} |
| 127 | 83 |
} |
--- base/src/main/java/egovframework/com/mng/cop/bbs/web/BBSAttributeManageController.java
+++ base/src/main/java/egovframework/com/mng/cop/bbs/web/BBSAttributeManageController.java
... | ... | @@ -138,6 +138,11 @@ |
| 138 | 138 |
//게시판 마스터 목록을 조회한다. |
| 139 | 139 |
@RequestMapping("/mng/cop/bbs/SelectBBSMasterInfs.do")
|
| 140 | 140 |
public String selectBBSMasterInfs(@ModelAttribute("searchVO") BoardMasterVO boardMasterVO, ModelMap model, HttpServletRequest request, HttpServletResponse response) throws Exception {
|
| 141 |
+ |
|
| 142 |
+ System.out.println("성진");
|
|
| 143 |
+ System.out.println("성진");
|
|
| 144 |
+ System.out.println("성진");
|
|
| 145 |
+ |
|
| 141 | 146 |
if(EgovStringUtil.isEmpty(boardMasterVO.getSiteId())) {
|
| 142 | 147 |
LoginVO loginVO = EgovUserDetailsHelper.getAuthenticatedUser(request, response); |
| 143 | 148 |
if(!EgovStringUtil.isEmpty(loginVO.getSiteId())) {
|
--- base/src/main/resources/egovframework/spring/context-aspect.xml
+++ base/src/main/resources/egovframework/spring/context-aspect.xml
... | ... | @@ -10,8 +10,7 @@ |
| 10 | 10 |
expression="execution(* egovframework.com..impl.*Impl.*(..))" /> |
| 11 | 11 |
|
| 12 | 12 |
<aop:aspect ref="exceptionTransfer"> |
| 13 |
- <aop:after-throwing throwing="exception" |
|
| 14 |
- pointcut-ref="serviceMethod" method="transfer" /> |
|
| 13 |
+ <aop:after-throwing throwing="exception" pointcut-ref="serviceMethod" method="transfer" /> |
|
| 15 | 14 |
</aop:aspect> |
| 16 | 15 |
</aop:config> |
| 17 | 16 |
|
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?