<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ page contentType="text/html;charset=UTF-8" language="java" %> 首页

使用JSP表达式:

用户姓名:<%= request.getAttribute("name") %>
博客地址:<%= request.getAttribute("blog") %>
备注信息:<%= request.getAttribute("remark") %>

使用EL表达式语言:

用户姓名:${requestScope.name}
博客地址:${requestScope.blog}
备注信息:${requestScope.remark}

使用JSTL标签库:

用户姓名:
博客地址:
备注信息: