EL+JSTL+JAVAEE三层架构


layout: post
title: EL+JSTL+JAVAEE三层架构
subtitle: 用法
date: 2018-04-23
author: ZL
header-img: img/20180423.jpg
catalog: true
tags:
- EL
- JSTL
- JAVAEE三层架构
- MVC


EL

介绍:

在jsp中可以使用java代码,但是还是比较麻烦的,EL就是简化了一些Java代码的编写。
EL(Express Lanuage)表达式可以嵌入在jsp页面内部,减少jsp脚本的编写,EL 出现的目的是要替代jsp页面中脚本的编写。

使用EL获取域中的数据:

jsp脚本:<%=request.getAttribute(name)%>
EL表达式替代上面的脚本:${requestScope.name}

EL最主要的作用是获得四大域中的数据,格式${EL表达式}

  • EL获得pageContext域中的值:${pageScope.key};
  • EL获得request域中的值:${requestScope.key};
  • EL获得session域中的值:${sessionScope.key};
  • EL获得application域中的值:${applicationScope.key};
  • EL从四个域中获得某个值${key};
    同样是依次从pageContext域,request域,session域,application域中 获取属性,在某个域中获取后将不在向后寻找

比如在域中有一些数据,用jsp脚本代码获取如下:


<%=request.getAttribute("company") %>
<%
  User sessionUser = (User)session.getAttribute("user");
  out.write(sessionUser.getName());
%>

用EL表达式获取域中数据如下:


${requestScope.company }
${sessionScope.user.name }
${applicationScope.list[1].name}//获取一个list


${company }
${user.name }
${list[1].name}

还可以使用el获取表单数据,用法还是一样。
比如:

<%
  request.getParameter("username");
%>


${param.username }

EL内置对象

  • pageScope,requestScope,sessionScope,applicationScope 获取JSP中域中的数据
  • param,paramValues - 接收参数.
    相当于request.getParameter() rrquest.getParameterValues()
  • header,headerValues - 获取请求头信息
    相当于request.getHeader(name)
  • initParam - 获取全局初始化参数
    相当于this.getServletContext().getInitParameter(name)
  • cookie - WEB开发中cookie
    相当于request.getCookies()---cookie.getName()---cookie.getValue()
  • pageContext - WEB开发中的pageContext
    ${pageContext.request.contextPath}获取web应用的名称。

比如:


${param.username }
${header["User-Agent"] }
${initParam.aaa }
${cookie.name.value }


${pageContext.request }

EL执行表达式



${1+1 }
${1==1?true:false }

${empty list}

JSTL

说明

JSTL配合EL使用可以更加简化。
JSTL(JSP Standard Tag Library),JSP标准标签库,可以嵌入在jsp页面中使用标签的形式完成业务逻辑等功能。jstl出现的目的同el一样也是要代替jsp页面中的脚本代码。JSTL标准标准标签库有5个子库,但随着发展,目前常使用的是他的核心库

标签库 标签库的URI 前缀
Core http://java.sun.com/jsp/jstl/core c
I18N http://java.sun.com/jsp/jstl/fmt fmt
SQL http://java.sun.com/jsp/jstl/sql sql
XML http://java.sun.com/jsp/jstl/xml x
Functions http://java.sun.com/jsp/jstl/functions fn

基本上只有表中第一个用的比较多。

导入

  • 导包

    image

    新版本的可能只要导入一个包

  • 导入

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    

使用

  • 标签
    其中test是返回boolean的条件
    <%
      if (count == 9){
        out.write("xxxx");
      }
    &>
    
    ==========等价于=====================
    
    
    
    
      xxxx
    
    
  • 标签
    for(int i=0;i<=5;i++){
              syso(i)
    }
    
    
      
          ${i }
    ${pro.pname }

JSTL配合EL取更复制的数据

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page import="java.util.*" %>
<%@ page import="com.itheima.domain.*" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>




Insert title here


    <%
        //模拟List strList
        List strList = new ArrayList();
        strList.add("itcast");
        strList.add("itheima");
        strList.add("boxuegu");
        strList.add("shandingyu");
        request.setAttribute("strList", strList);
        
        //遍历List的值
        List userList = new ArrayList();
        User user1 = new User();
        user1.setId(2);
        user1.setName("lisi");
        user1.setPassword("123");
        userList.add(user1);
        User user2 = new User();
        user2.setId(3);
        user2.setName("wangwu");
        user2.setPassword("123");
        userList.add(user2);
        application.setAttribute("userList", userList);
        
        //遍历Map的值
        Map strMap = new HashMap();
        strMap.put("name", "lucy");
        strMap.put("age", "18");
        strMap.put("addr", "西三旗");
        strMap.put("email", "[email protected]");
        session.setAttribute("strMap", strMap);
        
        //遍历Map的值
        Map userMap = new HashMap();
        userMap.put("user1", user1);
        userMap.put("user2", user2);
        request.setAttribute("userMap", userMap);
    %>
    
    
    
    

取出strList的数据

${str }

取出userList的数据

user的name:${user.name }------user的password:${user.password }

取出strMap的数据

${entry.key }====${entry.value }

取出userMap的数据

${entry.key }:${entry.value.name }--${entry.value.password }

JAVAEE开发模式

MVC:---- web开发的设计模式

M:Model---模型 javaBean:封装数据
V:View-----视图 jsp:单纯进行页面的显示
C:Controller----控制器 Servelt:获取数据--对数据进行封装--传递数据-- 指派显示的jsp页面

javaEE的三层架构

服务器开发时 分为三层
web层:与客户端交互
service层:复杂业务处理
dao层:与数据库进行交互
开发实践时 三层架构通过包结构体现

EL+JSTL+JAVAEE三层架构_第1张图片
image

EL+JSTL+JAVAEE三层架构_第2张图片
image

你可能感兴趣的:(EL+JSTL+JAVAEE三层架构)