Web应用开发: JSP语法编程实践(四):EL编程实践

一、实验内容

1、EL表达式的熟练使用
创建一个Java Web项目,使用EL表达式获取访问此项目的绝对地址。
2、EL表达式的熟练使用
(1)在一个Servlet中创建一个对象集合,例如:List,将此对象集合类存入request对象属性中,请求转发到listIterator.jsp;
(2)在listIterator.jsp中遍历并使用EL表达式输出Student对象的属性值。

二、实验要求

源代码和测试截图(均直接输入到答题框中)

三、简介

一、EL表达式简介
  EL 全名为Expression Language。EL主要作用:
  1、获取数据
    EL表达式主要用于替换JSP页面中的脚本表达式,以从各种类型的web域 中检索java对象、获取数据。(某个web域 中的对象,访问javabean的属性、访问list集合、访问map集合、访问数组)
  2、执行运算
    利用EL表达式可以在JSP页面中执行一些基本的关系运算、逻辑运算和算术运算,以在JSP页面中完成一些简单的逻辑运算。${user==null}
  3、获取web开发常用对象
    EL 表达式定义了一些隐式对象,利用这些隐式对象,web开发人员可以很轻松获得对web常用对象的引用,从而获得这些对象中的数据。
  4、调用Java方法
    EL表达式允许用户开发自定义EL函数,以在JSP页面中通过EL表达式调用Java类的方法。

四、实验代码

实验一:

思路:利用request对象方法获取内容,再将字符串拼接出来

//location.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>




EL表达式的熟练使用






该项目所在的绝对地址:${pageContext.request.scheme}${'://'}${pageContext.request.serverName}${':'}${pageContext.request.serverPort}${pageContext.request.contextPath}

<%--

此项目请求的URL:${pageContext.request.requestURL}

--%>
项目所在的绝对地址

实验二:

思路:构建一个Objects.java的sevlet用来构建数据和请求转发;创建Student.java用作javabean(逻辑模型);构建listIterator.jsp用来显示。

//Objects.java
package topus;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class Objects
 */
@WebServlet("/Objects")
public class Objects extends HttpServlet {
    private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public Objects() {
        super();
        // TODO Auto-generated constructor stub
    }

    /**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
        //response.getWriter().append("Served at: ").append(request.getContextPath());
        Listlist=new ArrayList<>();
        for(int i=0;i<100;i++){
        Student stu=new Student();
        stu.setNum(i+1);
        list.add(stu);
        }
        
        //将学生列表设置到requet范围中  
        request.setAttribute("list", list);
        //转发,转发是在服务器端转发的,客户端是不知道的  
        request.getRequestDispatcher("/listIterator.jsp").forward(request,response);
    }

    /**
     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
        //doGet(request, response);
    }

}
//Student.java
package topus;


public class Student {
private String name;
    
    private int num;

    public Student(){
        super();
    }
    
    public Student(String name, int num) {
        super();
        this.name = name;
        this.num = num;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getNum() {
        return num;
    }

    public void setNum(int num) {
        this.num = num;
    }
    
    
}
//listIterator.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    <%@ taglib prefix="c" 
           uri="http://java.sun.com/jsp/jstl/core" %>





Insert title here



<%-- 

(测试用)获取request属性值: ${requestScope.list[1].num}

--%>

获取得到的学生序号:

Student序号

EL表达式输出Student对象的属性值

注意其中这段代码:


   Student序号 

关于foreach:(http://www.runoob.com/jsp/jstl-core-foreach-tag.html)
这段代码属于JSP 标准标签库(JSTL)的内容,需要在lib里面导入标签库包,以及在xml里面建立映射,然后在在jsp声明中导入taglib 。过程很繁琐(教程链接:http://www.runoob.com/jsp/jsp-jstl.html),也可以直接使用jsp脚本的for循环来显示。

你可能感兴趣的:(Web应用开发: JSP语法编程实践(四):EL编程实践)