标签名 attribute Tag Body empty 作用 得到application中某个属性的值 使用示例 示例说明 输出application中名为test1的属性的值。
标签名 attributes Tag Body JSP 作用 遍历application中所有的属性或得到特定属性的值 使用示例 Name: Value: 示例说明 输出application中所有属性的名称和值。 使用示例 Name: Value: 示例说明 输出application中属性myatt的名称和值。
标签名 equalsAttribute Tag Body JSP 作用 判定application中属性的值是否与指定值相等。 使用示例 The application attribute with name test1 matches the string "blah". The application attribute with name test1 does not match the string "blah". 示例说明 判定application中属性test1的值是否为blah。
标签名 existsAttribute Tag Body JSP 作用 判定application中是否存在指定名称的属性。 使用示例 The application attribute with name test1 exists. The application attribute with name test1 does not exist. 示例说明 判定application中是否有名为test1的属性。
标签名 removeAttribute Tag Body empty 作用 从application中删除指定名称的属性。 使用示例 示例说明 删除application中名为test1的属性。
标签名 setAttribute Tag Body JSP 作用 设定application中指定属性的值。 使用示例 Test Value 示例说明 设定application中test1的属性值为Test Value。
1.2.2 Application初始化参数标签
标签名 initParameter Tag Body empty 作用 得到application中指定参数的值。 使用示例 示例说明 得到application中参数test1的值。
标签名 initParameters Tag Body JSP 作用 遍历application中所有初始化参数或得到特定参数的值。 使用示例 Name: Value: 示例说明 输出application中所有初始化参数的名称和值。 使用示例 Name: Value: 示例说明 得到application中参数test1的值。
标签名 equalsInitParameter Tag Body JSP 作用 判定application中某参数的值是否与指定值相同。 使用示例 The initialization parameter with name test1 matches "blah". The initialization parameter with name test1 does not match "blah". 示例说明 判定application中参数test1的值是否为blah。
标签名 existsInitParameter Tag Body JSP 作用 判定application中是否存在指定名称的参数。 使用示例 The initializaion parameter with name test1 exists. The initialization parameter with name test1 does not exist. 示例说明 判定application中是否存在参数test1。