【JSP】JSTLを使ってjspを記述する
はじめに
JSTLを使ってjspを記述するために必要な手順を記載します。
1.jstl-api-1.2.jarファイルダウンロード
2.jstl-impl-1.2.jarファイルダウンロード
3.ファイル格納
WEB-INF/libに2つのjarファイルを格納する。
4.jspファイルでjstlを記述
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>全件検索結果</title>
</head>
<body>
<table border=1>
<tr><th>id</th><th>title</th><th>content</th></tr>
<c:forEach var="dto" items="${queryAll}">
<tr>
<td>${dto.id}</td>
<td>${dto.title}</td>
<td>${dto.content}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
参考
Author And Source
この問題について(【JSP】JSTLを使ってjspを記述する), 我々は、より多くの情報をここで見つけました https://qiita.com/Kbayatch12345/items/64b5b79815ea8f3fc8ec著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .