博客
关于我
JSP指令
阅读量:373 次
发布时间:2019-03-05

本文共 1182 字,大约阅读时间需要 3 分钟。

JSP ?? ??

1. ??

JSP ?? ????????? JSP ??????????????????????????????????????????????????????

2. ??

JSP ?????????

  • page ????????????
  • include ????????????
  • taglib ??????????????

Page ??

1. ??

<%@ page attribute1="value1" attribute2="value2" %>

page ????????????????????

2. ??

page ??????????????

  • language: ?????????
  • contentType: ?????????
  • pageEncoding: ?????????

3. ????

  • import: ??????
  • contentType: ??????????? text/html ? text/xml?
  • pageEncoding: ?????????? UTF-8?
  • session: ???????
  • errorPage: ???????

Include ??

1. ??

<%@ include file="filename" %>

include ?????????????

2. ??

include ???????????????????????????? .jsp?.html ? .java?

3. ??

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>    
Insert title here<%@ include file="head.jsp" %>

Body content

<%@ include file="end.jsp" %>

Taglib ??

1. ??

<%@ taglib uri="taglib-URI" prefix="prefixName" %>

taglib ?????????????

2. ??

taglib ???????????????????????????????????????

3. ??

<%@ taglib uri="/WEB-INF/tlds/mytags.tld" prefix="my" %>
  • uri: ??????????
  • prefix: ???????

????

  • page ???????????
  • include ? taglib ?????????
  • page ????????????????????????

?????? JSP ????????????????????????

转载地址:http://snvg.baihongyu.com/

你可能感兴趣的文章
php aes sha1解密,PHP AES加密/解密
查看>>
php array 分片,PHP常用数组函数小结
查看>>
php CI框架单个file表单多文件上传例子
查看>>
php composer
查看>>
reflow和repaint引发的性能问题
查看>>
Reflection反射机制原理、使用场景 及 缺陷
查看>>
php csv 导出
查看>>
php curl 实例+详解
查看>>
php curl_init函数用法(http://blog.sina.com.cn/s/blog_640738130100tsig.html)
查看>>
php curl_multi批量发送http请求
查看>>
php curl请求微信发红包接口出现错误:Peer's Certificate issuer is not recognized.
查看>>
PHP curl请求错误汇总和解决方案
查看>>
php declare(ticks=1)
查看>>
UVA 10474
查看>>