欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jsp常用指令、基本动作和9种内置对象

程序员文章站 2022-05-18 14:32:57
jsp常用指令: session=”true” buffer=”64kb”autoflush=”true” isthreadsafe=”true” info=”text” errorpage=”...

jsp常用指令:

session=”true” buffer=”64kb”autoflush=”true” isthreadsafe=”true”

info=”text” errorpage=”error.”iserrorpage=”true” iselignored=”

true” pageencoding=”gb2312”import=”java.sql.*”%>

iserrorpage:是否能使用exception对象;iselignored:是否忽略el表达式;


jsp 共有以下 6 种基本动作:

jsp:include:在页面被请求的时候引入一个文件;

jsp:usebean:寻找或者实例化一个javabean。;

jsp:setproperty:设置 javabean 的属性。;

jsp:getproperty:输出某个 javabean 的属性;

jsp:forward:把请求转到一个新的页面;

jsp:plugin:根据类型为 java 插件生成 object 或 embed 标记。


jsp 共有以下 9 种基本内置(可与 asp 的 6 种内部组件相对应):

request:用户端请求,此请求会包含来自 get/post请求的参数;

response:网页传回用户端的回应;

pagecontext:网页的属性是在这里管理;

session:与请求有关的会话期;

application:servlet 正在执行的内容;

out:用来传送回应的输出;

config:servlet 的构架部件;

page:jsp 网页本身;

exception:针对错误网页,未捕捉的例外。