zoukankan      html  css  js  c++  java
  • Jsp入门小常识

    因为选修了一门信息系统的课,选择了用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行为,,,,这些就不一一细讲。

  • 相关阅读:
    svg
    vuex的模块
    es6的新增方法和es5数组的一些方法
    vue的响应规则
    简单的解构赋值
    vuex的四种状态
    indexDB
    token验证
    C# 委托与事件的DEMO
    WPF MVVM 键盘按键事件绑定
  • 原文地址:https://www.cnblogs.com/yuanting/p/4454470.html
Copyright © 2011-2022 走看看