- 浏览: 1112819 次
文章分类
- 全部博客 (379)
- S2SH (16)
- stuts2 (0)
- java语言 (81)
- JSP (17)
- <html>元素 (11)
- javaweb (4)
- web容器 (3)
- ext (23)
- javaScript (48)
- ant (1)
- liferay (1)
- sql (9)
- css (42)
- 浏览器设置 (3)
- office_world (1)
- eclipse (4)
- 其它 (28)
- 操作系统 (5)
- android (6)
- Struts2 (11)
- RegEx (3)
- mysql (5)
- BigDATA (1)
- Node.js (1)
- Algorithm (10)
- Apache Spark (1)
- 数据库 (5)
- linux (2)
- git (1)
- Adobe (3)
- java语言,WebSocket (1)
- Maven (3)
- SHELL (1)
- XML (2)
- 数学 (2)
- Python (2)
- Java_mysql (1)
- ReactJS (6)
- 养生 (4)
- Docker (1)
- Protocols (3)
- java8 (2)
- 书籍 (1)
- Gradle (2)
- AngularJS (5)
- SpringMVC (2)
- SOAP (1)
- BootstrapCSS (1)
- HTTP协议 (1)
- OAuth2 (1)
最新评论
-
Lixh1986:
Java并发编程:自己动手写一把可重入锁https://blo ...
Java之多线程之Lock与Condition -
Lixh1986:
http://win.51apps.com.cn/https: ...
temp -
ztwsl:
不错,支持很好
HttpServletRequest和ServletRequest的区别 -
guodongkai:
谢谢您能将知识精华汇编总结,让初学者们从原理中学会和提高。
javaScript之function定义 -
kangwen23:
谢谢了,顶顶
struts2中的ValueStack学习
第一篇
对于可以重复使用的一段代码,
1、使用 <%@include file="reuse.html"%> 在jsp中进行引用。
2、使用 <jsp:include page="reuse.html"/> 在jsp中进行引用。
reuse.html 代码:
分别访问JSP后,你会得到相同的结果。
然后开始想:这两种引用文件的方式有何不用?
当你查看 jsp 被编译后而生成的 servlet 文件,你会看到不同。
1、使用 <%@include 指令时,所看到编译后的的文件:
2、使用 <jsp:include 标签时,所看到编译后的的文件:
现在可以看出:
include 指令引入的是原文件的本身到当前的 jsp 中。
所以称作“静态引用” —— 原文件是什么样,引入时就是什么样。
include 标签是执行了方法的调用(invoke call jsp method),
然后传递了 request,response,out 参数过去。
所以称作“动态引用” —— 引入的是 jsp 文件执行过程中的结果。
所引用的文件,对于变量的范围:
<%@include 指令:的方式,通常把一些常用的全局变量,引入到jsp文件中。
<jsp:include 标签:引用 jsp,可以避免 jsp 作用域范围的变量的命名冲突。
所引用的 JSP 文件,对于只是为了输出单纯的文本:
两种引用方式没有任何区别。
第二篇
Reusing Content in JSP Pages
在JSP 中重复使用相同的内容或代码
方法:
- 使用 @include 指令
- 使用 jsp:include 标签
@include 引用的内容,会与 jsp 一起被编译成 一个 servlet class
这里只有一个 jsp class
The include directive is processed when the JSP page is translated into a servlet class. The effect of the directive is to insert the text contained in another file (either static content or another JSP page) into the including JSP page. You would probably use the include directive to include banner content, copyright information, or any chunk of content that you might want to reuse in another page. The syntax for the include directive is as follows:
<%@ include file="filename" %>
For example, all the Duke’s Bookstore application pages could include the file banner.jspf, which contains the banner content, by using the following directive:
<%@ include file="banner.jspf" %>
Another way to do a static include is to use the prelude and coda mechanisms described in Defining Implicit Includes. This is the approach used by the Duke’s Bookstore application.
Because you must put an include directive in each file that reuses the resource referenced by the directive, this approach has its limitations. Preludes and codas can be applied only to the beginnings and ends of pages. For a more flexible approach to building pages out of content chunks, see A Template Tag Library.
jsp:include 引用的是 jsp 编译完成后,jsp 执行后的结果。
这里会有多个 jsp class
jsp 处于不用的上下文环境,注意参数的传递。
The jsp:include element is processed when a JSP page is executed. The include action allows you to include either a static or a dynamic resource in a JSP file. The results of including static and dynamic resources are quite different. If the resource is static, its content is inserted into the calling JSP file. If the resource is dynamic, the request is sent to the included resource, the included page is executed, and then the result is included in the response from the calling JSP page. The syntax for the jsp:include element is:
<jsp:include page="includedPage" />
The hello1 application discussed in Packaging Web Modules uses the following statement to include the page that generates the response:
<jsp:include page="response.jsp"/>
-
引用请注明:
原文出处:http://lixh1986.iteye.com/blog/2379902
-
引用:
http://docs.oracle.com/javaee/5/tutorial/doc/bnajb.html
what-is-the-difference-between-jspinclude-page-and-include-file
https://stackoverflow.com/questions/7879906
-
对于可以重复使用的一段代码,
1、使用 <%@include file="reuse.html"%> 在jsp中进行引用。
2、使用 <jsp:include page="reuse.html"/> 在jsp中进行引用。
reuse.html 代码:
<html> <head> <title>reusable</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <img src="candle.gif" height="100" width="50"/> <br /> <p><b>As the candle burns,so do I</b></p> </body>
分别访问JSP后,你会得到相同的结果。
然后开始想:这两种引用文件的方式有何不用?
当你查看 jsp 被编译后而生成的 servlet 文件,你会看到不同。
1、使用 <%@include 指令时,所看到编译后的的文件:
out.write("<html>\r\n"); out.write(" <head>\r\n"); out.write(" <title>reusable</title>\r\n"); out.write(" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\r\n"); out.write(" </head>\r\n"); out.write(" <body>\r\n"); out.write(" <img src=\"candle.gif\" height=\"100\" width=\"50\"/> <br />\r\n"); out.write(" <p><b>As the candle burns,so do I</b></p>\r\n"); out.write(" </body>\r\n"); out.write("</html>\r\n");
2、使用 <jsp:include 标签时,所看到编译后的的文件:
org.apache.jasper.runtime .JspRuntimeLibrary.include(request, response, "reusable.html", out, false);
现在可以看出:
include 指令引入的是原文件的本身到当前的 jsp 中。
所以称作“静态引用” —— 原文件是什么样,引入时就是什么样。
include 标签是执行了方法的调用(invoke call jsp method),
然后传递了 request,response,out 参数过去。
所以称作“动态引用” —— 引入的是 jsp 文件执行过程中的结果。
所引用的文件,对于变量的范围:
<%@include 指令:的方式,通常把一些常用的全局变量,引入到jsp文件中。
<jsp:include 标签:引用 jsp,可以避免 jsp 作用域范围的变量的命名冲突。
所引用的 JSP 文件,对于只是为了输出单纯的文本:
两种引用方式没有任何区别。
第二篇
Reusing Content in JSP Pages
在JSP 中重复使用相同的内容或代码
方法:
- 使用 @include 指令
- 使用 jsp:include 标签
@include 引用的内容,会与 jsp 一起被编译成 一个 servlet class
这里只有一个 jsp class
引用
The include directive is processed when the JSP page is translated into a servlet class. The effect of the directive is to insert the text contained in another file (either static content or another JSP page) into the including JSP page. You would probably use the include directive to include banner content, copyright information, or any chunk of content that you might want to reuse in another page. The syntax for the include directive is as follows:
<%@ include file="filename" %>
For example, all the Duke’s Bookstore application pages could include the file banner.jspf, which contains the banner content, by using the following directive:
<%@ include file="banner.jspf" %>
Another way to do a static include is to use the prelude and coda mechanisms described in Defining Implicit Includes. This is the approach used by the Duke’s Bookstore application.
Because you must put an include directive in each file that reuses the resource referenced by the directive, this approach has its limitations. Preludes and codas can be applied only to the beginnings and ends of pages. For a more flexible approach to building pages out of content chunks, see A Template Tag Library.
jsp:include 引用的是 jsp 编译完成后,jsp 执行后的结果。
这里会有多个 jsp class
jsp 处于不用的上下文环境,注意参数的传递。
引用
The jsp:include element is processed when a JSP page is executed. The include action allows you to include either a static or a dynamic resource in a JSP file. The results of including static and dynamic resources are quite different. If the resource is static, its content is inserted into the calling JSP file. If the resource is dynamic, the request is sent to the included resource, the included page is executed, and then the result is included in the response from the calling JSP page. The syntax for the jsp:include element is:
<jsp:include page="includedPage" />
The hello1 application discussed in Packaging Web Modules uses the following statement to include the page that generates the response:
<jsp:include page="response.jsp"/>
-
引用请注明:
原文出处:http://lixh1986.iteye.com/blog/2379902
-
引用:
http://docs.oracle.com/javaee/5/tutorial/doc/bnajb.html
what-is-the-difference-between-jspinclude-page-and-include-file
https://stackoverflow.com/questions/7879906
-
发表评论
-
javaWeb session失效时间设置
2018-04-25 14:19 1998session失效时间设置 session失效时间设 ... -
JSP 表达式 VS EL 表达式 用法比较
2017-06-21 06:03 1054应用场景: 根据访问路径URL,判断当前用户选择使用的语言。转 ... -
JavaEE之(Servlet+Filter)环境搭建
2017-04-01 14:15 1042初学 Java Web 开发,请远 ... -
Servlet之单例与线程安全
2017-02-06 13:04 4441一、Servlet 是单例吗 不 ... -
Servlet之 destroy
2016-11-29 22:04 792只听说过 Servlet 何时 init(),何时 servi ... -
Servlet之JSP_03 JSTL/EL 表达式
2016-09-16 16:13 2318准备工作:在JSP 中启用 EL 表达式 <%@ ... -
Servlet之JSP_02初探
2016-09-15 22:37 844一、被编译后的JSP 1、写一个JSP文件:index.js ... -
Servlet之JSP_01概述
2016-09-15 20:42 1165一、什么是JSP JSP (Java Server Page ... -
Servlet之Servlet API
2016-09-13 19:10 1614一、在哪里 Java Servlet ... -
Servlet 的生命周期图
2014-12-31 03:18 951A servlet life cycle can be def ... -
在一个JSP页面中,操作数据库
2013-03-11 19:02 2785下面的代码是在一个jsp页面中实现数据库的操作。 也是为了加深 ... -
Servlet之Filter及FilterChain的使用详解
2013-01-07 20:06 2164在 JavaEE 中没有 Interceptor(拦截器)的概 ... -
out.print和out.write
2012-12-30 11:42 19432问题: 这是一个JSP页面: <%@ page l ... -
等幂操作——get方法与post方法
2012-12-23 20:13 1754幂等操作: 指的是对于同一数据,不论对其进行任何次幂操作,总 ... -
如何将jsp中<input>设为只读
2012-12-13 10:49 23335将一个input变为只读,可以使用 readonly 属性 和 ... -
Request的 getAttribute 和 getParameter
2012-12-03 19:57 1283getParameter 返回的是String, 用于 ...
相关推荐
在JavaServer Pages (JSP) 技术中,`<jsp:include>` 和 `<%@ include %>` 是两个用于页面组合的指令,它们虽然都用于将一个或多个文件的内容插入到主页面中,但它们的工作机制和使用场景有所不同。理解这两者的区别...
在Java Web开发中,`jsp:include`和`<jsp:include>`标签是两种常见的页面包含机制,它们用于将一个或多个动态或者静态资源合并到一个JSP页面中。这两种方式虽然看似相似,但有着本质的区别,理解它们的用法和区别...
相比之下,`<jsp:include page=” ” flush=”true”/>` 是 JSP 的动作元素,它可以在运行时将指定的 JSP 文件包含到当前 JSP 文件中。这个过程发生在执行阶段,而不是翻译阶段。这意味着 `<jsp:include page=” ” ...
nt test</title></head><body>This content is statically in the main JSP file. <jsp:include page="included.html"/></body></html>]]>)正如你所见,清单2使用了传统的`<%@include file="..."%>`伪指令来包含...
总结,JSP的`Include`方式是构建复杂网站架构的关键技术之一,通过合理利用静态和动态Include,开发者能够创建出高效且易于维护的Web应用。在实际工作中,理解并熟练掌握这两种方式的差异和应用场景,对于提升开发...
在Java Web开发中,`<jsp:include>`动作是一个非常重要的元素,用于动态地将一个页面包含到另一个页面中。这个动作使得开发者可以实现页面的重用和模块化设计,提高代码的可维护性。本实验的目标是让学生掌握`<jsp:...
在JavaServer Pages (JSP) 技术中,存在两种包含关系:`<jsp:include>` 动作和 `jsp:include` 指令。它们都是用来将一个页面的内容插入到另一个页面中的,但它们的工作方式和适用场景有所不同。 **1. `<jsp:include...
考虑下面JSP文件代码片断: <jsp:include page=”test2.jsp”> <jsp:param name=”username” value=”accp”/> </jsp:include> 以下( )代码片断放置在test2.jsp中不会导致错误。
jsp:include page=” ” flush=”true”/> 前者是指令元素、后者是行为元素。具体它们将在何处用?如何用及它们有什么区别?这应该是很多人看到它都会想到的问题。下面一起来看看吧。 通常当应用程序中所有的...
JSP Include 文件时的一个乱码解决方法 在 JSP 开发中,include 文件是一个常用的技术手段,可以将公共的代码或者组件包含到不同的页面中,以提高代码的复用性和维护性。然而,在使用 JSP include 文件时,经常会...
标题“j2EE15:jsp04,session的访问控制,分页查询,page include”涉及了四个关键的Java Web开发概念。首先,我们来深入理解这些概念: 1. **Session的访问控制**: 在Web应用中,session是用于跟踪用户状态的一种...
Java Web 初级编程 JSP 页面元素 JAVA Web 编程是当前 Web 开发中非常重要的一...Page 指令和 Include 指令是 JSP 页面元素中非常重要的两种指令,它们用于在 JSP 页面中指定不同的指令,以便控制 JSP 页面的行为。
JSP 中 Include 指令静态导入和动态导入的区别详解 JSP 中的 Include 指令可以实现静态导入和动态导入两种方式。静态导入和动态导入是 JSP 中 Include 指令的两种不同的实现方式,它们之间有着明显的区别。 静态...
### JSP Include 两种用法的区别 在JSP(JavaServer Pages)开发中,`include`指令被广泛用于将一个JSP页面的内容嵌入到另一个JSP页面中。这种技术可以提高代码的重用性、简化维护过程并有助于实现更灵活的设计。在...
在JSP中,`<jsp:include>`标签是用于在页面间进行内容包含的,但有时可能会遇到“乱码”问题,这通常涉及到字符编码的处理。本文将详细解析JSP `include` 乱码问题的成因以及解决方法。 首先,我们要理解乱码产生的...
从技术角度上,jsp:include动作和include指令的主要区别在于:jsp:include是在运行时动态地包含另一个文件,而include指令是在JSP页面被转换成Servlet的时候静态地包含另一个文件。因此,jsp:include动作支持动态...
JSP动作包括: jsp:include:在页面被请求的时候引入一个文件。 jsp:useBean:寻找或者实例化一个JavaBean。 jsp:setProperty:设置JavaBean的属性。 jsp:getProperty:输出某个JavaBean的属性。 jsp:forward:把...
本文将详细介绍两种使用`jsp:include`标签在Spring MVC中嵌入页面的方法。 1. 静态嵌入子页面 静态嵌入是通过`<%@ include file="..." %>`语法实现的。这种方法在JSP页面被转换成Servlet源代码时就已经处理,所以...
用jsp:include动作实现 <jsp include page=”included.jsp” flush>它总是会检查所含文件中的变化,适合用于包含动态页面,并且可以带参数。 静态INCLUDE 用include伪码实现,定不会检查所含文件的变化,...
【JSP包含指令(Include Tag)详解】 JSP(JavaServer Pages)是Java技术在Web开发中的一个重要组成部分,它允许开发者将HTML、CSS、JavaScript等静态内容与Java代码结合在一起,实现动态网页的生成。在JSP中,`...