留言板

RE: Liferay portlet queries

Anand Raman,修改在11 年前。

Liferay portlet queries

New Member 帖子: 8 加入日期: 12-11-23 最近的帖子
Good day,

I have a few queries on Liferay on building a portlet solution.

1. What is the best approach to build a new application(medium-sized - about 80 pages with transactions and complex navigation) to be exposed as portlets via Liferay? Is it the Liferay MVC or the Liferay Faces? What are the pros and cons of these approaches?

2. Are there any performance related issues in using Liferay Faces bridge? Does the bridging between the portlet life cycle and JSF life cycle slows down the application?

3. Is it correct to build complex applications as portlets running in Liferay?

Thanks in advance.

Best regards,
Anand
thumbnail
Hitoshi Ozawa,修改在11 年前。

RE: Liferay portlet queries

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
If you use Faces, you'll have to design pages so they won't use too much client side memory.
It's possible to create complext application but you'll need to design it "correctly" for liferay framework. Most developers having problems with liferay development are caused by improper application design. It's not the tool but how to use it properly. :-)
Anand Raman,修改在11 年前。

RE: Liferay portlet queries

New Member 帖子: 8 加入日期: 12-11-23 最近的帖子
Thank you Hitoshi. What is the recommended approach for developing a new application to be integrated with Liferay?

1. Build it using Liferay Faces bridge (Makes it easy to separate out the application from Liferay, if required, in future).
2. Build it using Liferay MVC (tight-coupling with Liferay APIs)
thumbnail
Neil Griffin,修改在11 年前。

RE: Liferay portlet queries

Liferay Legend 帖子: 2655 加入日期: 05-7-27 最近的帖子
I just posted an answer to a similar question in a different thread.

Regarding performance of portlet/webapp frameowrks, there is often a tradeoff between performance and ease of development. The JSF framework offers lots of great features and conveniences to developers, but it requires a portlet bridge that causes the portlet lifecycle to invoke the JSF lifecycle. How many users will you have in your system that would concurrently work with a JSF portlet?
Anand Raman,修改在11 年前。

RE: Liferay portlet queries

New Member 帖子: 8 加入日期: 12-11-23 最近的帖子
Thank you very much for your response Neil.
I am expecting between 50 and 100 users accessing the portlet concurrently.

Best regards,
Anand
thumbnail
Neil Griffin,修改在11 年前。

RE: Liferay portlet queries

Liferay Legend 帖子: 2655 加入日期: 05-7-27 最近的帖子
Hi Anand,

Provided that there are no performance bottlenecks in your portlet, 50-100 concurrent users should be no problem at all.

Best Regards,

Neil
Anand Raman,修改在11 年前。

RE: Liferay portlet queries

New Member 帖子: 8 加入日期: 12-11-23 最近的帖子
Thank you very much Neil.