zoukankan      html  css  js  c++  java
  • 【JSTL】--读取实体成员变量吗?--drp212

    User.java

    /**
     * 
     */
    package com.bjpowrnode.jstl;
    
    /**
     * @ClassName:User
     * @Description:TODO
     * @author wm
     * @date 2016年2月15日上午9:42:15
     */
    public class User {
    
    	private String username1;
    	private  int  age;
    	private Group group;
    	public String getUsername() {
    		return username1;
    	}
    	public void setUsername(String username1) {
    		this.username1 = username1;
    	}
    	public int getAge() {
    		return age;
    	}
    	public void setAge(int age) {
    		this.age = age;
    	}
    	public Group getGroup() {
    		return group;
    	}
    	public void setGroup(Group group) {
    		this.group = group;
    	}
    
    }
    

    JSP

    <%@ page language="java" contentType="text/html; charset=GB18030"
        pageEncoding="GB18030"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=GB18030">
    <title>Insert title here</title>
    </head>
    <body>
    	<h1>测试EL表达式</h1>
    	<hr>
    	<li>普通字符串</li><br>
    	hello(jsp脚本):<%=request.getAttribute("hello") %></br>
    	hello(El表达式:语法:$和{}:${hello}<br>
    	hello(el表达式,el内置对象,	pageScope,requestScope,sessionScope,applicationScope	)<br>
    	如果不指定范围,它的搜索范围就是pageScope~applicationScope():${requestScope.hello}<br>
    	hello(el表达式,从session中取得):${sessionScope.hello}<br>
    	
    	<p>
    	<li>结构</li>
    	姓名:${user.username}<br>
    	年龄:${user.age }<br>
    	所属:<br>
    </body>
    </html>
    

    username可以读取到结果,读取的时候,读取的是getUsername,而不是成员变量。

    先读取getUsername,然后取get后面的单词,小写。

  • 相关阅读:
    基于webpack的react脚手架
    关于密码的简单加密
    移动端日期控件
    JS中如何巧妙的用事件委托
    JS中关于正则的巧妙操作
    call,apply,bind
    vue常用笔记
    高性能的js第三方库——lodash、 Underscore、async、md5及moment
    Nightwatch——自动化测试(端对端e2e)
    for循环的耗时问题
  • 原文地址:https://www.cnblogs.com/wangmei/p/5190045.html
Copyright © 2011-2022 走看看