Foros de discusión

Develop and deploy using different web servers

Alvin Then, modificado hace 9 años.

Develop and deploy using different web servers

New Member Mensajes: 2 Fecha de incorporación: 10/09/14 Mensajes recientes
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, modificado hace 9 años.

RE: Develop and deploy using different web servers

Liferay Legend Mensajes: 14919 Fecha de incorporación: 2/09/06 Mensajes recientes
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, modificado hace 9 años.

RE: Develop and deploy using different web servers

New Member Mensajes: 2 Fecha de incorporación: 10/09/14 Mensajes recientes
Thanks for your advice, I shall quickly look into developing on tomcat.