JSTL로 Scriptlet 변수 접근
<%      String myVariable="Test";      pageContext.setAttribute("myVariable", myVariable); %> <?xml:namespace prefix ="c" /> <c:out value="myVariable">

Scriptlet으로 JSTL 변수 접근
<?xml:namespace prefix="c" /> <c:set value="Test" var="myVariable"> <% String myVariable = (String)pageContext.getAttribute("myVariable"); out.print(myVariable); %>


+ Recent posts