Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- vscode
- tomcat
- JavaScript
- web.xml
- IntelliJ
- 단축키
- plugin
- Mac
- ssh
- profile
- find
- 네트워크
- Quartz
- Windows
- lsof
- xargs
- VirtualBox
- Source
- netsh
- GIT
- context
- bash
- maVen
- grep
- port
- Eclipse
- resource
- Windows 10
- import
- 줄바꿈 문자
Archives
- Today
- Total
develog
[java] jsp jstl 변수 변경후 html 에 출력 본문
<c:set var="address" value="seoul"/>
<div>address = ${address}</div> <!-- address = seoul -->
<%
String address = String.valueOf(pageContext.getAttribute("address"));
address += " korea";
pageContext.setAttribute("address", address);
%>
<div>address = ${address}</div> <!-- address = seoul korea -->
Comments