留言板

Develop and deploy using different web servers

Alvin Then,修改在9 年前。

Develop and deploy using different web servers

New Member 帖子: 2 加入日期: 14-9-10 最近的帖子
Hi,

Are there anything that I should keep in mind when developing using Liferay IDE with Tomcat bundle but deploying the war at different web server?

Thanks,
Alvin
thumbnail
David H Nebinger,修改在9 年前。

RE: Develop and deploy using different web servers

Liferay Legend 帖子: 14919 加入日期: 06-9-2 最近的帖子
Most of the time the wars are container-neutral, so it shouldn't be a problem, but will depend upon how far outside the norm your app server is configured. For example, in many jee app servers you can get pretty fancy w/ your security definitions, something you don't have to worry about in tomcat. So you could face issues there.

But in general I always recommend developing against tomcat. As a developer your goal should be quickly cranking out plugins, and a 'lightweight' container like tomcat w/ it's debugging facilities is the best.

That way if you do have container issues later on, they are container issues and not necessarily code or plugin issues.
Alvin Then,修改在9 年前。

RE: Develop and deploy using different web servers

New Member 帖子: 2 加入日期: 14-9-10 最近的帖子
Thanks for your advice, I shall quickly look into developing on tomcat.