⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 util.java

📁 OS(OpenSymphony)的SiteMesh是一个用来在JSP中实现页面布局和装饰(layout and decoration)的框架组件
💻 JAVA
字号:
package com.opensymphony.module.sitemesh.tapestry;import com.opensymphony.module.sitemesh.HTMLPage;import com.opensymphony.module.sitemesh.Page;import com.opensymphony.module.sitemesh.RequestConstants;import org.apache.tapestry.IRender;import org.apache.tapestry.IRequestCycle;import org.apache.tapestry.valid.RenderString;/** * This utility class gives easy access to the SiteMesh page, with convenience * methods for title and property. A common usage would be with OGNL expressions * like this: * <p/> * <html jwcid="@Shell" * title="ognl:@com.opensymphony.module.sitemesh.tapestry.Util@getTitle()"> * <p/> * In future versions of Tapestry, thanks to HiveMind integration, this will * become a lot cleaner, probably like this: * <p/> * <html jwcid="@Shell" title="sitemesh:title"> * * @author Erik Hatcher */public class Util {    public static String getTitle(IRequestCycle cycle) {        return getPage(cycle).getTitle();    }    public static String getProperty(String name, IRequestCycle cycle) {        return getPage(cycle).getProperty(name);    }    public static Page getPage(IRequestCycle cycle) {        return (Page) cycle.getRequestContext().getRequest().getAttribute(                RequestConstants.PAGE);    }    public static IRender getHeadRenderer(IRequestCycle cycle) {        return new RenderString(((HTMLPage) getPage(cycle)).getHead(), true);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -