programming/jsp

[JSTL] 다국어 비교하기

labj 2013. 1. 29. 14:07

[JSTL] 다국어 비교하기


<c:choose>
    <c:when test="${param.sLang ne null && param.sLang ne ''}">
        <c:redirect url="/main/main.do?sLang=${param.sLang}"/>
    </c:when>
    <c:otherwise>
        <c:redirect url="/main/main.do"/>
    </c:otherwise>
</c:choose>


파라메터로 전달된 sLang의 값을 체크해서 url에 sLang의 값을 변경합니다.


[JSTL] 다국어 비교하기