JSTL - 정리 (JSP 프로젝트 과정에서)

ino5·2021년 6월 4일
0

c:if문 문자열 비교 관련 따옴표

<c:set var="name" value="aaa" />
<c:if test="${name eq 'aaa'}">
    true
</c:if>
<c:set var="name" value="aaa" />
<c:if test="${name == 'aaa'}">
    true
</c:if>

문자열 비교도 ==로 가능하며, 문자열을 따옴표로 ' ' 로 나타낼 수 있다.


el값 null값인지 확인

<c:if test="${not empty board.file_name}">
<tr>
	<td id="td3" rowspan="2">
		<input type="image" name="file_pic" src="${board.file_name }" style="height: 200px; width: 160px;">
	</td>
</tr>
</c:if>
profile
지금은 네이버 블로그만 해요... https://blog.naver.com/chero77

0개의 댓글