Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring boot wep application to IBM Websphere

I have created the Web application(Spring MVC) using spring boot and executed it via in-build server apache tomcat( maven tomcat plugin). it is working fine. So my question is how to deploy this WAR into WAS 7.0 application server.

like image 788
Vasanth Avatar asked Oct 19 '22 23:10

Vasanth


1 Answers

You just need to change packaging in Maven to WAR and define deployment descriptor. Read this section if Spring Boot reference docs.

like image 200
luboskrnac Avatar answered Oct 23 '22 01:10

luboskrnac