博客
关于我
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/

你可能感兴趣的文章
object detection错误之Could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR
查看>>
object detection错误之no module named nets
查看>>
Object of type 'ndarray' is not JSON serializable
查看>>
Object Oriented Programming in JavaScript
查看>>
object references an unsaved transient instance - save the transient instance before flushing
查看>>
Object 类的常见方法有哪些?
查看>>
Object-c动态特性
查看>>
Object.assign用法
查看>>
Object.create
查看>>
Object.defineProperty详解
查看>>
Object.keys()的详解和用法
查看>>
objectForKey与valueForKey在NSDictionary中的差异
查看>>
Objective - C 小谈:消息机制的原理与使用
查看>>
OBJECTIVE C (XCODE) 绘图功能简介(转载)
查看>>