do 경로를 못잡아요.
- 작성자 :
- 궁*철
- 작성일 :
- 2013-10-21 19:00:57
- 조회수 :
- 857
- 구분 :
- 개발환경
- 진행상태 :
- 완료
Q
샘플보고 쭉 따라하고있는데 mysql 접속해서
데이터까지는 다 받아와서 콘솔에 select까지는 다 해주는데
화면연결하는 부분에 .do 쪽을 전혀 타지를 못하고있습니다.
어디를 수정해야할까요.
=======================================================
controller.java입니다.
@Controller
@SessionAttributes(types=PolistVO.class)
public class EgovPolistController {
/** EgovPolistService */
@Resource(name = "polistService")
private EgovPolistService polistService;
/** EgovPropertyService */
@Resource(name = "propertiesService")
protected EgovPropertyService propertiesService;
/** Validator */
@Resource(name = "beanValidator")
protected DefaultBeanValidator beanValidator;
/**
* 글 목록을 조회한다. (pageing)
* @param searchVO - 조회할 정보가 담긴 PolistDefaultVO
* @param model
* @return "/order/egovOrderList"
* @exception Exception
*/
@RequestMapping(value="/order/egovOrderList.do")
public String selectPolistList(@ModelAttribute("searchVO") PolistDefaultVO searchVO,
ModelMap model)
throws Exception {
/** EgovPropertyService.polist*/
searchVO.setPageUnit(propertiesService.getInt("pageUnit"));
searchVO.setPageSize(propertiesService.getInt("pageSize"));
/** pageing setting */
PaginationInfo paginationInfo = new PaginationInfo();
paginationInfo.setCurrentPageNo(searchVO.getPageIndex());
paginationInfo.setRecordCountPerPage(searchVO.getPageUnit());
paginationInfo.setPageSize(searchVO.getPageSize());
searchVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
searchVO.setLastIndex(paginationInfo.getLastRecordIndex());
searchVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
List polistList = polistService.selectPolistList(searchVO);
model.addAttribute("resultList", polistList);
int totCnt = polistService.selectPolistListTotCnt(searchVO);
paginationInfo.setTotalRecordCount(totCnt);
model.addAttribute("paginationInfo", paginationInfo);
return "/order/egovOrderList";
}
}
===========================================================
index.jsp 에 /order/egovOrderList.do
걸어두고 jsp 경로에 order 폴더를 만들어서
egovOrderList.jsp 파일을 생성했지만 로그에 아무것도
남지않고 계속 common/error.jsp 만 타네요.
하루종일 찾아봤는데 아직 삽질중이라서...
어디를 봐야할지 힌트좀 부탁드려요;;
데이터까지는 다 받아와서 콘솔에 select까지는 다 해주는데
화면연결하는 부분에 .do 쪽을 전혀 타지를 못하고있습니다.
어디를 수정해야할까요.
=======================================================
controller.java입니다.
@Controller
@SessionAttributes(types=PolistVO.class)
public class EgovPolistController {
/** EgovPolistService */
@Resource(name = "polistService")
private EgovPolistService polistService;
/** EgovPropertyService */
@Resource(name = "propertiesService")
protected EgovPropertyService propertiesService;
/** Validator */
@Resource(name = "beanValidator")
protected DefaultBeanValidator beanValidator;
/**
* 글 목록을 조회한다. (pageing)
* @param searchVO - 조회할 정보가 담긴 PolistDefaultVO
* @param model
* @return "/order/egovOrderList"
* @exception Exception
*/
@RequestMapping(value="/order/egovOrderList.do")
public String selectPolistList(@ModelAttribute("searchVO") PolistDefaultVO searchVO,
ModelMap model)
throws Exception {
/** EgovPropertyService.polist*/
searchVO.setPageUnit(propertiesService.getInt("pageUnit"));
searchVO.setPageSize(propertiesService.getInt("pageSize"));
/** pageing setting */
PaginationInfo paginationInfo = new PaginationInfo();
paginationInfo.setCurrentPageNo(searchVO.getPageIndex());
paginationInfo.setRecordCountPerPage(searchVO.getPageUnit());
paginationInfo.setPageSize(searchVO.getPageSize());
searchVO.setFirstIndex(paginationInfo.getFirstRecordIndex());
searchVO.setLastIndex(paginationInfo.getLastRecordIndex());
searchVO.setRecordCountPerPage(paginationInfo.getRecordCountPerPage());
List polistList = polistService.selectPolistList(searchVO);
model.addAttribute("resultList", polistList);
int totCnt = polistService.selectPolistListTotCnt(searchVO);
paginationInfo.setTotalRecordCount(totCnt);
model.addAttribute("paginationInfo", paginationInfo);
return "/order/egovOrderList";
}
}
===========================================================
index.jsp 에 /order/egovOrderList.do
걸어두고 jsp 경로에 order 폴더를 만들어서
egovOrderList.jsp 파일을 생성했지만 로그에 아무것도
남지않고 계속 common/error.jsp 만 타네요.
하루종일 찾아봤는데 아직 삽질중이라서...
어디를 봐야할지 힌트좀 부탁드려요;;
A
안녕하세요. 궁경철님
Controller에서 디버깅을 해 보시면 어떤 부분에서 오류가 나는 지 확인 할 수 있습니다.
아래 개발자 가이드를 참고해 보시고 BreakPoint를 선언해서 관련 오류를 찾아보시기 바랍니다.
http://www.egovframe.go.kr/wiki/doku.php?id=egovframework:dev2:imp:debug:local_debug
참고로, 로그가 없기 때문에 정확한 답변을 드리기 어렵습니다. 다만 로직을 처리하는 데 화면에 대한 경로가 잘못되어 있어서 jsp파일을 못찾는 듯 합니다.
고맙습니다.
Controller에서 디버깅을 해 보시면 어떤 부분에서 오류가 나는 지 확인 할 수 있습니다.
아래 개발자 가이드를 참고해 보시고 BreakPoint를 선언해서 관련 오류를 찾아보시기 바랍니다.
http://www.egovframe.go.kr/wiki/doku.php?id=egovframework:dev2:imp:debug:local_debug
참고로, 로그가 없기 때문에 정확한 답변을 드리기 어렵습니다. 다만 로직을 처리하는 데 화면에 대한 경로가 잘못되어 있어서 jsp파일을 못찾는 듯 합니다.
고맙습니다.