본문 바로가기

내컴퓨터/컴퓨터사용하기

spring+tiles Exception

JAVA 1.6

Tomcat 6.0

전자정부프레임워크 2.7

Tiles2 세팅해서 확인하는데, Exception 발생


Exception내용=>

javax.servlet.ServletException: Could not resolve view with name...(생략)



해결=>

Controller에서 호출하는 대로 tiles맵핑해줌.

<definition name="/*" extends="layout">
		<put-attribute name="content" value="/WEB-INF/jsp/{1}.jsp"></put-attribute>
</definition>
에러가 발생할땐 이렇게 되어있었다.

Controller에서 return은 return "main", return "insert" 등으로 되어있었다.

그래서 name="*"로 바꾸었더니 잘 된다.