<!-- 포워딩을 처리하는 애임 InternalResourceViewResolver
이거안하면 <property>로 계속 설정하여야한다.
-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/" p:suffix=".jsp"
/>
</beans>
이렇게 설정해주면
mav.setViewName("/hello.jsp"); 를
mav.setViewName("hello"); 로쓸수있다
'웹 & 프레임워크' 카테고리의 다른 글
스프링 기본 web.inf 설정방법 (0) | 2014.05.25 |
---|---|
스프링에서 간단하게 web.inf 에서 인코딩(Encoding) 처리하자 (0) | 2014.05.25 |
annotation기반 redirect와 session 설정법 (0) | 2014.05.25 |
Spring을 이용하면 객체자체 VO를 값으로 보내버릴수있다! (0) | 2014.05.25 |
Spring 과 jdbcTemplate을 이용한 예제 queryForObject (0) | 2014.05.25 |