| 网站首页 | 模板 | 资料 | 源码 | 工具 | 开发 | 设计 | 安全 | 项目 | 网络 | 图片 | 系统 | 数据库 | 博客 | 会员中心 | 小说 | 
MYFTP 精品资料下载
网络学院
学习资料
源码模版
您现在的位置: 精品下载 >> 开发 >> .net >> 文章正文 用户登录 新用户注册
jetspeed开发实战            【字体:
jetspeed开发实战
作者:佚名    文章来源:不详    点击数:    更新时间:2007-10-7
这里假设monsys为web服务的名称,其路径在webapps/下面1,jetspeed的图片处理图片默认放在monsys/images下面,调用方法:$clink.setURI("images/test.jpg")2,javascript处理javascript黑认放在monsys/javascript下调用方法:$clink.setURI("javascript/test.css")3,portlets的位置位于monsys/WEB-INF/templates/vm/portlets/html下面4,页面总体布局控制看JetspeedResources.propertiesbottomnav.enable=truebottomnav.vm=bottom.vmleftnav.enable=trueleftnav.vm=left.vmleftnav.width=10%topnav.enable=truetopnav.vm=top.vmtopnav.logo.file=images/jetspeed-logo-1.5.giftopnav.logo.url=topnav.user_login.enable=truetopnav.user_creation.enable=truetopnav.my_pages.enable=true5,portlets源代码分析:portlet主要实现三个方法:<1>,buildMaximizedContext最大化<2>,buildConfigureContext显示信息<3>,buildNormalContext正常情况,也就是所看到的正常显示时所要显示的信息<4>,调用时,在添加模块时添加新参数action=portlets.GraphDailyActionpackage org.apache.jetspeed.modules.actions.portlets;import .............(N个,略)public class GraphDailyActionextends VelocityPortletAction {/*** Subclasses should override this method if they wish to* build specific content when maximized. Default behavior is* to do the same as normal content.*/protected void buildMaximizedContext(VelocityPortlet portlet,Context context,RunData rundata) {buildNormalContext(portlet, context, rundata);String text = (String) context.get("text");if (text == null) {text = "Top Record of baccarat game";}context.put("text", text + " (Maximized !)");}/*** Subclasses should override this method if they wish to* provide their own customization behavior.* Default is to use Portal base customizer action*/protected void buildConfigureContext(VelocityPortlet portlet,Context context,RunData rundata) {buildNormalContext(portlet, context, rundata);setTemplate(rundata, "hello-customize");}/*** 这是主要部份* Subclasses must override this method to provide default behavior* for the portlet action*/protected void buildNormalContext(VelocityPortlet portlet,Context context,RunData rundata) {String mode= portlet.getPortletConfig().getInitParameter("mode"); //读取添加模块时从配置文件传来的参数String searchdate = rundata.getParameters().getString("searchdate"); //取得从页面提交得到的参数context.put("mode",mode);context.put("searchdate",searchdate)//输出页面要显示的信息,支持输出数组,对像,及容器等形式的数据}}<5>写好源代码,并编译,参考里的:  1,<3>所建的参数action,其值为portlets.GraphDailyAction,则系统会去热行这个类


文章录入:chqnet    责任编辑:chqnet 
  • 上一篇文章:

  • 下一篇文章:
  • 最新热点 最新推荐 相关文章
    Dreamweaver CS3 Beta界面功
    HTML中小meta的大作用
    样式表(CSS:Cascading Styl
    样式表(CSS:Cascading Sty
    robots.txt禁止搜索引擎收录
    Robots META标签和robots.tx
    robots.txt 指南-介绍
    HTML教程-各窗口间相互操作(
    target=“_blank”不符合标准
    meta标签的奥妙
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)