반응형
- Spring에러 - HTTP Status 500 - Could not resolve view with name... -
Spring으로 프로그래밍을 하는 도중에 HTTP Status 500 - Could not resolve view with name 'item_popup.tiles' In servlet... 하는 오류가 떴다.
찾아보니 경로가 잘 못 입력이 되어있어서 생기는 오류였다.
layout.xml의 definition name="item_popup.tiles"와
1 2 3 4 | <!-- 주문등록POPUP --> <definition name="item_popup.tiles" template="WEB-INF/views/layouts_popup.jsp"> <put-attribute name="main" value="/WEB-INF/views/sales/item_popup.jsp" /> </definition> | cs |
Controller.java의 return "item_popup.tiles";
1 2 3 4 5 6 | // 주문등록_POPUP(order_insert) @RequestMapping(value = "item_popup.do", method = { RequestMethod.GET, RequestMethod.POST }) public String item_popup(CGVFreeboardParam param, Model model) throws Exception { return "item_popup.tiles"; } | cs |
부분이 매칭이 안되서 생기는 오류였다.
두 코드를 매칭시켜주니 오류가 해결됐다.
반응형
그리드형
'프로그래밍 > Spring' 카테고리의 다른 글
Maven 설치 및 Eclipse와 연동하기 (0) | 2016.09.11 |
---|---|
Tomcat으로 Spring파일 열어보기 (0) | 2016.05.12 |
자바에서 Spring파일 열어보기 (0) | 2016.05.12 |
Spring 이름 변경하기 (0) | 2016.05.12 |