掲示板

RE: Liferay portlet queries

11年前 に Anand Raman によって更新されました。

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
11年前 に Hitoshi Ozawa によって更新されました。

RE: Liferay portlet queries

Liferay Legend 投稿: 7942 参加年月日: 10/03/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. :-)
11年前 に Anand Raman によって更新されました。

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
11年前 に Neil Griffin によって更新されました。

RE: Liferay portlet queries

Liferay Legend 投稿: 2655 参加年月日: 05/07/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?
11年前 に Anand Raman によって更新されました。

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
11年前 に Neil Griffin によって更新されました。

RE: Liferay portlet queries

Liferay Legend 投稿: 2655 参加年月日: 05/07/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
11年前 に Anand Raman によって更新されました。

RE: Liferay portlet queries

New Member 投稿: 8 参加年月日: 12/11/23 最新の投稿
Thank you very much Neil.