Scriptlet과 JSTL 변수 공유
2015. 4. 23. 17:50ㆍJAVA/JSTL
JSTL로 Scriptlet 변수 접근
Scriptlet으로 JSTL 변수 접근
<% 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); %>