码迷,mamicode.com
首页 > Web开发 > 详细

Jsp入门小常识

时间:2015-04-24 22:20:30      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

因为选修了一门信息系统的课,选择了用jsp做了一个系统。在这期间自学了jsp的一点皮毛,特与大家分享:

script标签:用于向jsp中嵌入java代码块,<%  // embed java code%>

声明标签:用于声明变量和方法,<% !variable declaration;

                                                    method declaration>

表达式标签:用于向JSP中插入Java表达式,<% =Java Expression %>

JSP指令:<% directive_type directive_attributes%>

                   directive_attributes::=page|Include|taglib

                   directive_attributes::=dependent on thye directive_type

include指令:用于包含另一个文件的文本,<% @include file ="Relative_URL_to_File"%>

taglib指令:用于通过导入定制行为标签扩展JSP的功能 <%@taglib uri ="URI_to_Tag_Library"prefix="Custom_action"%>

useBean,setProperty行为,,,,这些就不一一细讲。

Jsp入门小常识

标签:

原文地址:http://www.cnblogs.com/yuanting/p/4454470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!