liferay
文章平均质量分 55
gaofeiyunb
软件研发,项目管理,爱好开源
展开
-
liferay中的Velocity使用分析(1)
liferay中使用Velocity进行themes设定,下面来分析一下它的应用过程 1.我们先看看VelocityVariables.java这个类,它定义了4个方法 public static void insertHelperUtilities(VelocityContext vc, String[] restrictedVariables)({...原创 2008-07-16 13:26:00 · 1221 阅读 · 0 评论 -
liferay中使用liferay-ui进行文件上传
在liferay中使用liferay-ui进行文件上传比较容易,效果还不错,下面我们来看都需要哪些代码1,jsp页面中,见下面代码 for (int i = 1; i %> msgFile" size="70" type="file" /> } %>通过循环控制上传文件个数2,我们再看action的部分,如下代码Li原创 2008-07-17 15:50:00 · 3604 阅读 · 1 评论 -
对Liferay框架的几点分析总结
一、JSP中如何使用TabLiferay的jsp页面中,如果用了tab的选项,则tab1为第一层,tab2为第二层,tab3为第三层,从上到下,为父子关系。如何开发一个带选择框的列表应用?1、建立数据库模型(废话)2、建立dao及相关portlet.service服务框架,接口和Util3、实现服务接口;4、开发对应的JSP页面;5、开发相应的Action;6、在liferay中进行转载 2008-07-19 15:04:00 · 1245 阅读 · 0 评论 -
在liferay中实现action-path的重定向
在liferay中实现了ActionResponseImpl类继承自ActionResponse实现了PortletResponse接口在ActionResponseImpl中提供了2种创建重定向url的方法,分别对应actionurl和renderurl这样我们就可以在action中利用ActionResponseImpl创建重定向路径,从而实现在action中的重定向代码如下:原创 2008-10-31 15:36:00 · 1974 阅读 · 0 评论 -
liferay4.3与Fedora的整合实现
Liferay integration Fedora实现方案:1:在liferay中提供CMS的功能,可以进行文件的上传操作,主要支持文件类型有:.bmp, .css, .doc,.dot, .gif, .gz, .htm, .html, .jpg, .js, .odb, .odf, .odg, .odp, .ods, .odt,.pdf, .png, .ppt, .rtf原创 2008-10-31 15:53:00 · 903 阅读 · 0 评论 -
在liferay中生成one to many 关系说明
在liferay中生成one to many 关系说明1:在service.xml中配置For example: name="shoppingItemPrices" type="Collection" entity="ShoppingItemPrice" mapping-key="itemId"/>说明: enti原创 2008-11-11 09:45:00 · 1041 阅读 · 0 评论 -
liferay中使用Jquery返回json对象处理
1. 引入js。参见liferay-portlet.xml 在配置时,其中有一项 如 /html/portlet/mail/packed.js 在dtd中这样解释Set the path of JavaScript that will be referenced in the pages header relative t原创 2008-11-11 09:41:00 · 3299 阅读 · 0 评论 -
liferay中文档库的Repository配置
今天有网友发问:liferay中使用文档库Repository如何配置。回忆起原来看的源代码,又重新查看了一番1,首先在在portal.properties里面找到resource.repositories.root=${user.home}/liferay的配置,这里是说明默认的repositories根目录,可修改为任意的磁盘目录2,liferay中jcr的相关代码请查阅portal-原创 2008-11-14 09:56:00 · 1503 阅读 · 0 评论