
jsp
文章平均质量分 61
gmemai
这个作者很懒,什么都没留下…
展开
-
JSP Custom Tags Example
<%@ include file=”relativeURI”%> 可以叫作静态include(静态包含),是jsp指令中的一种,(JSP指令控制JSP编译器如何去生成servlet。 <jsp:include page=”relativeURI” flush=”true” />叫作动态include(动态包含),是jsp动作的一种,(JSP动作是一系列可以调用内建于网络服务器中的功能的XML标签)转载 2015-09-01 10:49:42 · 672 阅读 · 0 评论 -
JSP - Architecture
The web server needs a JSP engine ie. container to process JSP pages. The JSP container is responsible for intercepting requests for JSP pages. This tutorial makes use of Apache which has built-in JSP转载 2015-09-01 15:25:46 · 357 阅读 · 0 评论 -
What is JavaServer Pages?
JavaServer Pages (JSP) is a technology for developing web pages that support dynamic content which helps developers insert java code in HTML pages by making use of special JSP tags, most of which start转载 2015-09-01 15:14:29 · 437 阅读 · 0 评论 -
JSP - Actions
JSP actions use constructs in XML syntax to control the behavior of the servlet engine. You can dynamically insert a file, reuse JavaBeans components, forward the user to another page, or generate HTML转载 2015-09-01 17:16:26 · 463 阅读 · 0 评论 -
JSP - Hits Counter
A hit counter tells you about the number of visits on a particular page of your web site. Usually you attach a hit counter with your index.jsp page assuming people first land on your home page.To imple转载 2015-09-01 14:53:38 · 455 阅读 · 0 评论 -
JSP - Syntax
This tutorial will give basic idea on simple syntax (ie. elements) involved with JSP development:The Scriptlet:A scriptlet can contain any number of JAVA language statements, variable or method declara转载 2015-09-01 16:29:37 · 507 阅读 · 0 评论 -
JSP - Include Directive
The include directive is used to includes a file during the translation phase. This directive tells the container to merge the content of other external files with the current JSP during the translatio转载 2015-09-01 14:46:29 · 550 阅读 · 0 评论 -
JSP Custom tags with example – JSP Tutorial
User-defined tags are known as custom tags. In this tutorial we will see how to create a custom tag and use it in JSP.To create a custom tag we need three things: 1) Tag handler class: In this class w转载 2015-09-01 13:39:22 · 428 阅读 · 0 评论 -
JSP - Directives
JSP directives provide directions and instructions to the container, telling it how to handle certain aspects of JSP processing.A JSP directive affects the overall structure of the servlet class. It us转载 2015-09-01 16:43:40 · 361 阅读 · 0 评论 -
How to access body of Custom tags in JSP tutorial
In the last tutorial we learnt how to create and use custom tags in JSP. In this tutorial we will see how to access the body of custom tag. For e.g. If our custom tag is xyz then we would learn to acce转载 2015-09-01 14:57:40 · 387 阅读 · 0 评论 -
JSP Tutorial
JavaServer Pages (JSP) is a server-side programming technology that enables the creation of dynamic, platform-independent method for building Web-based applications. JSP have access to the entire famil转载 2015-09-01 14:48:25 · 387 阅读 · 0 评论 -
Designing JSP Custom Tag Libraries
What a Custom Tag Library IsIf you’ve ever had the opportunity to build a web application using Java technology, chances are you have used Java Server Pages (JSP) for content display. JSP is the techno转载 2015-09-01 10:39:31 · 516 阅读 · 0 评论 -
JSP - Life Cycle
The key to understanding the low-level functionality of JSP is to understand the simple life cycle they follow.A JSP life cycle can be defined as the entire process from its creation till the destructi转载 2015-09-01 15:32:56 · 402 阅读 · 0 评论 -
Next page So how does a JSP actually work?
So how does a JSP actually work?It is turned into a special kind of servlet. The code is generated by a JSP compiler, which generates Java code out of it. This is the Java code that will be run while y转载 2015-09-01 15:07:39 · 343 阅读 · 0 评论