Rumah  >  Artikel  >  Java  >  JSTL Di Jawa

JSTL Di Jawa

WBOY
WBOYasal
2024-08-30 16:21:02804semak imbas

JSTL disingkatkan sebagai Java Standard Tag Library, yang merupakan sambungan lanjutan untuk JSP (Java Server Pages). JSTL mengurangkan baris kod untuk pembangun. JSTL ini menyokong tugas struktur, tugas biasa seperti bersyarat dan lelaran. Teg ini digunakan untuk menukar teg I18N (Pengantarabangsaan), teg SQL, dokumen XML, dll. Ini juga menyediakan rangka kerja untuk melampirkan teg tersuai yang sedia ada dalam Pustaka Teg Standard Java.

Mulakan Kursus Pembangunan Perisian Percuma Anda

Pembangunan web, bahasa pengaturcaraan, ujian perisian & lain-lain

Kelebihan JSTL:

  • Perkembangan Pantas.
  • Kebolehgunaan Kod.
  • Tidak perlu menggunakan tag skriplet.

Bagaimana JSTL Berfungsi di Jawa?

JSTL berfungsi berdasarkan jenis teg yang telah kami gunakan dalam aplikasi kami. Ia terdiri daripada sekitar 5 jenis tag. Mereka adalah

  1. Teg teras
  2. Tanda fungsi
  3. Memformat teg
  4. Teg XML
  5. Teg SQL

Teg JSTL Penerangan:

Tag Type Description URI to include prefix
Core tags The JSTL core tag provides flow control, variable support, URL management etc. http://java.sun.com/jsp/jstl/core c
Function tags This function tag is used for String manipulation and
String length
http://java.sun.com/jsp/jstl/
functions
fn
Formatting tags This formatting tag is used for number, date and message formatting http://java.sun.com/jsp/jstl/fmt fmt
XML tags This XML tag is used for transformation and flow control etc. http://java.sun.com/jsp/jstl/xml x
SQL tags This SQL tag is used to provide support for SQL support.  http://java.sun.com/jsp/jstl/sql sql
Jenis Teg
Penerangan URI untuk disertakan awalan
Teg teras Teg teras JSTL menyediakan kawalan aliran, sokongan pembolehubah, pengurusan URL dll. http://java.sun.com/jsp/jstl/core c
Teg fungsi Teg fungsi ini digunakan untuk manipulasi Rentetan dan
Panjang rentetan
http://java.sun.com/jsp/jstl/
fungsi
fn
Memformat teg Teg pemformatan ini digunakan untuk pemformatan nombor, tarikh dan mesej http://java.sun.com/jsp/jstl/fmt fmt
Teg XML Teg XML ini digunakan untuk transformasi dan kawalan aliran dll. http://java.sun.com/jsp/jstl/xml x
Teg SQL Teg SQL ini digunakan untuk menyediakan sokongan untuk sokongan SQL.  http://java.sun.com/jsp/jstl/sql sql

Setiap tag JSTL mempunyai sekali lagi terdiri daripada sub tag yang berbeza. Sekarang, kita akan melihat beberapa contoh teg teras dan teg fungsi.

Nota: Gunakan fungsi ini; kita mesti menggunakan fail jstl.1.X.jar. X menunjukkan versi.

Contoh

Berikut adalah contoh yang diberikan di bawah:

Struktur Projek dalam gerhana:

JSTL Di Jawa

Contoh #1 – Teg teras c:out

Kod: NewFile.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<!--THis c:out tag is used for displaying output-->
<c:out value="${'Hello Amardeep, Wel come to EDUCBA online courses.'}" />
</body>
</html>

Output:

JSTL Di Jawa

Contoh #2 – Set teg teras dan teg c:if

Kod: SetCIf.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<c:set var="money" scope="session" value="${5000*5}"/>
<c:if test="${money > 8000}">
<p>My Salary is: <c:out value="${money}"/><p>
</c:if>
</body>
</html>

Output:

JSTL Di Jawa

Contoh #3 – Teg teras dengan teg c:pilih

Kod: CChoose.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<c:set var="money" scope="session" value="${5000*5}"/>
<p>Your income is : <c:out value="${money}"/></p>
<c:choose>
<c:when test="${money <= 1000}">
You are paid with good salary.
</c:when>
<c:when test="${money > 10000}">
You are paid with really good salary.
</c:when>
<c:otherwise>
You are paid with low salary .
</c:otherwise>
</c:choose>
</body>
</html>

Output:

JSTL Di Jawa

Contoh #4 – Teg teras dengan teg c:when

Kod: CWhen.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<c:set value="214" var="digit"></c:set>
<c:choose>
<c:when test="${digit%2==0}">
<c:out value="${digit} is EVEN digit"></c:out>
</c:when>
<c:otherwise>
<c:out value="${digit} is ODD digit"></c:out>
</c:otherwise>
</c:choose>
</body>
</html>

Output:

JSTL Di Jawa

Contoh #5 – Teg teras dengan teg c:foreach

Kod: CForeach.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<c:forEach var="iterator" begin="100" end="110">
Count: <c:out value="${iterator}" />
<p>
</c:forEach>
</body>
</html>

Output:

JSTL Di Jawa

Contoh #6 – Teg teras dengan teg c:forTokens

Kod: CForTokens.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<c:forTokens items="My-Name-is-Nathi-Paramesh" delims="-" var="del">
Word: <c:out value="${del}" />
<p>
</c:forTokens>
</body>
</html>

Output:

 JSTL Di Jawa

Contoh # 7 – Teg teras dengan teg c:redirect

Kod: CRedirect.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<c:set var="urlName" value="2" scope="request"/>
<c:if test="${urlName<1}">
<c:redirect url="http:/educba.com"/>
</c:if>
<!-- Page directly redirect to gmail because value is greater than 1 -->
<c:if test="${urlName>1}">
<c:redirect url="http://gmail.com"/>
</c:if>
</body>
</html>

Output:

 JSTL Di Jawa

Contoh #8 – Teg fungsi dengan teg c:contains

Kod: FunctionContains.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<c:set var="StringType"
value="We are learning online course from EDUCBA platform" />
<c:if test="${fn:contains(StringType, 'EDUCBA')}">
<h1 style="color: green">Yes Given String found in the value
</h1>
<p style="color:blue;border: 1px solid red;font-size:20px">JSTL abbreviated as Java Standard Tag Library. Which is
further extension for JSP (Java Server Pages). JSTL reduced the lines
of code for developer. This JSTL supports for structural tasks,
common task like conditional and iteration. This tags used for
changing I18N (Internationalization) tags, SQL tags, XML documents
etc. This JSTL also provides a framework for attaching the already
existing custom tags within the Java Standard Tag Library.</p>
</c:if>
<c:if test="${fn:contains(StringType, 'courses')}">
<p>No Given String is not found in the value
<p>
</c:if>
</body>
</html>

Output:

 JSTL Di Jawa

Contoh # 9 – Teg fungsi dengan teg c:endsWith

Kod: CEndsWith.jsp

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<html>
<head>
<title>JSTL Tags</title>
</head>
<body>
<c:set var="StringType"
value="We are learning online course from EDUCBA platform" />
<c:if test="${fn:endsWith(StringType, 'platform')}">
<h1 style="color: red">Yes String ends with platfrom.</h1>
<p style="color: fuchsia; border: 1px solid red; font-size: 20px">JSTL
abbreviated as Java Standard Tag Library. Which is further extension
for JSP (Java Server Pages). JSTL reduced the lines of code for
developer. This JSTL supports for structural tasks, common task like
conditional and iteration. This tags used for changing I18N
(Internationalization) tags, SQL tags, XML documents etc. This JSTL
also provides a framework for attaching the already existing custom
tags within the Java Standard Tag Library.</p>
</c:if>
<c:if test="${fn:endsWith(String, 'are')}">
<p>String ends with are.
<p>
</c:if>
</body>
</html>

Output:

JSTL Di Jawa

Atas ialah kandungan terperinci JSTL Di Jawa. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel sebelumnya:Java TransientArtikel seterusnya:Java Transient