# 웹 개발/프레임워크

spring 전송방식, JSTL substring 기법

dev-jjong 2013. 5. 23. 11:51

spring 전송방식


//forward 방식

view.setViewName("forward:hello");

//redirect 방식

//view.setViewName("redirect:hello.jsp");



-------------------------------------------------------------------------------------------

JSTL에서 substring 기능쓰기



<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>


${fn:substring("string",start_index, end_index)}