day18-EL&JSTL与MVC初识EL表达式- EL: 为了使JSP写起来更加简单.
- 为什么学习EL: 简化JSP的代码,而且减少<% %>
- 使用EL表达式:
- EL的功能:
- 获取数据:(JSP的四个域) :以什么名字存到域中,就以什么名字取出来.存进去是什么类型,取出来就是什么类型
- 执行运算:
- 操作WEB开发的常用的对象:
- 调用Java中方法:
EL获取数据<h3>存取是普通的单值数据</h3><% //pageContext.setAttribute("name", "pValue"); //request.setAttribute("name", "rValue"); //session.setAttribute("name", "sValue"); application.setAttribute("name", "aValue");%><%=pageContext.getAttribute("name") %> <!-- 如果没找到 返回null --><%=request.getAttribute("name") %><%=session.getAttribute("name") %><%=application.getAttribute("name") %><hr/>${ pageScope.name } <!-- 返回的是"" -->${ requestScope.name }${ sessionScope.name }${ applicationScope.name }<hr/>${ name } <!-- 类似findAttribute("name") 先从page域中查找,没找到去request域中查询,没有找到去session域中找,没有找到就去application域中找 --><h3>获取数组的数据</h3><% String[] arrs = {"李旭华","李冠希","杨凤","杨如花"}; pageContext.setAttribute("arrs", arrs);%>${ arrs[0] }${ arrs[1] }${ arrs[2] }${ arrs[3] }<h3>获取List集合的数据</h3><% List<String> list = new ArrayList<String>(); list.add("李芙蓉"); list.add("杨芙蓉"); list.add("王凤"); pageContext.setAttribute("list", list);%>${ list[0] }${ list[1] }${ list[2] }<h3>获取Map集合的数据</h3><% Map<String,String> map = new HashMap<String,String>(); map.put("aaa","李旭华"); map.put("bbb","杨久君"); map.put("ccc","李芮"); map.put("ddd","李凤"); pageContext.setAttribute("map", map);%>${ map.aaa }${ map.bbb }${ map.ccc }${ map.ddd }<h3>获取对象的数据</h3><% User user = new User(1,"aaa","123"); pageContext.setAttribute("user", user);%>${ user.id }${ user.username }${ user.password }<h3>获取对象的集合的数据</h3><% User user1 = new User(1,"aaa","123"); User user2 = new User(2,"bbb","123"); User user3 = new User(3,"ccc","123"); List<User> userList = new ArrayList<User>(); userList.add(user1); userList.add(user2); userList.add(user3); pageContext.setAttribute("userList", userList);%>${ userList[0].id } - ${ userList[0].username } - ${ userList[0].password }<br/>${ userList[1].id } - ${ userList[1].username } - ${ userList[1].password }<br/>${ userList[2].id } - ${ userList[2].username } - ${ userList[2].password }<br/>.和[]的区别. ***** - []用于有下标的数据(数组,list集合) .用于有属性的数据(map,对象)
- 如果属性名中包含有特殊的字符.必须使用[]
执行运算<h1>EL的功能二:执行运算</h1><h3>EL执行算数运算</h3><% pageContext.setAttribute("n1", "10"); pageContext.setAttribute("n2", "20"); pageContext.setAttribute("n3", "30"); pageContext.setAttribute("n4", "40");%>${ n1 + n2 + n3 }<h3>EL执行逻辑运算</h3>${ n1 < n2 } - ${ n1 lt n2 } <!-- less than --><br/>${ n1 > n2 } - ${ n1 gt n2 } <!-- great than --><br/>${ n1 <= n2 } - ${ n1 le n2 } <!-- less equal --><br/>${ n1 >= n2 } - ${ n1 ge n2 } <!-- great equal --><br/>${ n1 == n2 } - ${ n1 eq n2 } <!-- equal --><br/><h3>EL执行关系运算</h3>${ n1<n2 && n3 < n4 } - ${ n1<n2 and n3 < n4 }<br/>${ n1<n2 || n3 < n4 } - ${ n1<n2 or n3 < n4 }<br/>${ !(n1 < n2) } - ${ not(n1<n2) }<h3>EL执行三元运算</h3>${ n1 < n2 ? "正确":"错误" }<h3>empty运算</h3>${ user == null } - ${ empty user }${ user != null } - ${ not empty user }EL操作WEB开发的常用对象11个<h1>EL功能三:操作WEB开发常用的对象</h1><!-- pageScope,requestScope,sessionScope,applicationScope - 获取JSP中域中的数据 param,paramValues - 接收参数. header,headerValues - 获取请求头信息 initParam - 获取全局初始化参数 cookie - WEB开发中cookie pageContext - WEB开发中的pageContext. --><h3>接收请求的参数</h3><%= request.getParameter("id") %><%= request.getParameter("name") %><%= Arrays.toString(request.getParameterValues("hobby")) %><hr/>${ param.id }${ param.name }${ paramValues.hobby[0] }${ paramValues.hobby[1] }<h3>获取请求头</h3><%= request.getHeader("User-Agent") %><hr/>${ header["User-Agent"] }<h3>获取全局初始化参数</h3>${ initParam.username }<h3>获取Cookie中的值</h3>${ cookie.history.value }<h3>获取PageContext中的对象</h3>IP地址:${ pageContext.request.remoteAddr }工程路径:${ pageContext.request.contextPath }JSTLJSTL的概述JSTL的核心标签的用法JSTL的提供EL的函数库<h1>JSTL提供的EL的函数库</h1>${ fn:contains("Hello World","Hello") }${ fn:length("HelloWorld") }${ fn:toLowerCase("ABCDE") }<c:forEach var="i" items='${ fn:split("a-b-c-d","-") }'> ${ i }</c:forEach>将商品信息显示到页面使用MVC设计模式完成转账的案例设计一个页面,输入三个值,一个是付款人,一个是收款人,一个是转账的金额.不能出现付款人的钱被扣除,而收款人没有收到钱的情况发生.而且要使用MVC的设计模式. JSP的开发模式一(了解即可)JSP+JavaBean的模式: 使用JSP显示数据,使用JavaBean封装和处理数据. 优点:显示和封装处理数据很方便. 缺点:维护麻烦. JSP的开发模式二(掌握)JSP+Servlet+JavaBean模式: 也被成为是MVC的设计模式. - MVC:
- M:Model:模型层 JavaBean
- V:View:视图层 JSP
- C:Controller:控制层 Servlet
优点:JSP用于显示数据,JavaBean用于封装和处理数据,Servlet控制
|