| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「JSTL」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
1行目: 1行目:
 
==JSTL==
 
==JSTL==
[[Java]]
+
[[Java]] |
  
  

2020年2月15日 (土) 08:37時点における版

JSTL

Java |


Tips

ブランク判定

null 判定

<c:if test="${ obj == null }">
  何らかの処理			
</c:if>

ブランク判定

ブランク判定
<c:if test="${empty obj.value}">
否ブランク判定
<c:if test="${not empty obj.value}">