2021-08-19初识JSP

此博客展示了如何在JavaWeb项目中使用JSP,包括引入servlet、jsp-api、jstl-api和standard库。内容包括JSP表达式、脚本片段、HTML内嵌代码以及JSP声明的使用,并通过示例演示了日期显示、循环和计算求和功能。
摘要由CSDN通过智能技术生成
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.example</groupId>
    <artifactId>javaweb-jsp</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1-b06</version>
            <scope>provided</scope>
        </dependency>


        <!-- https://mvnrepository.com/artifact/javax.servlet.jsp/jsp-api -->
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.1</version>
            <scope>provided</scope>
        </dependency>

        <!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/jstl-api -->
        <dependency>
            <groupId>javax.servlet.jsp.jstl</groupId>
            <artifactId>jstl-api</artifactId>
            <version>1.2</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/taglibs/standard -->
        <dependency>
            <groupId>taglibs</groupId>
            <artifactId>standard</artifactId>
            <version>1.1.2</version>
        </dependency>


    </dependencies>

</project>

在这里插入图片描述

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>$Title$</title>
  </head>
  <body>
    <%--JSP表达式  作用:将程序的的输出,显示到客户端--%>
    <%= new java.util.Date()%>
<hr>
    <%--JSP脚本片段--%>
  <%
     int sum =0;
    for (int i = 1; i < 100; i++) {
      sum+=i;
    }
    out.println("<h1>Sum="+sum+"<h1>");
  %>
<hr>
    <%--在代码嵌入HTML元素--%>

  <%for (int i = 0; i <= 10; i++) {%>
       <h1>hello,panpan <%=i%> </h1>   <%--也可以用EL表达式--%>
    <%}%>


  <hr>

    <%--JSP声明 ===========全局变量与方法--%>
  <%!
    static {
      System.out.println("载入中");
    }

    private int globalVar = 0;
    public void jspInit(){
      System.out.println("进入了方法init");
    }
    %>
  </body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值