Frank van der Linden
Frank van der Linden

Reputation: 1271

Will java app run on Liberty Profile and WAS

At a customer we use WAS to develop and run web apps. The problem is that WAS running locally is not the fasted web server. With the release of Websphere Liberty Profile (WLP) it could be a good alternative to run on our local development environment.

Will Java apps developed on WLP run on a 'real' WAS server? Without changes??

Upvotes: 0

Views: 442

Answers (2)

F Rowe
F Rowe

Reputation: 2064

Yes, Java EE applications developed on Liberty will run on WebSphere Application Server traditional without changes because both are Java EE compliant application servers. Because of it's composabilility, smaller size and faster starter startup time, developing applications on Liberty and deploying them on WebSphere Application Server traditional is a common paradigm and can provide a good development experience.

Upvotes: 2

covener
covener

Reputation: 17896

If you develop on Liberty with a goal to deploy on traditional WebSphere Application Server, and limit your applications to the EE6 web profile programming model (https://www-01.ibm.com/support/knowledgecenter/SSEQTP_8.5.5/com.ibm.websphere.wlp.doc/ae/rwlp_feature_webProfile-6.0.html) your application is likely to run unmodified on traditional WebSphere Application Server.

The WebSphere Migration Toolkit can help answer some of theses kinds of questions by analyzing your application:

https://www.ibm.com/developerworks/websphere/downloads/migtoolkit/config.html

Upvotes: 2

Related Questions