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.
Asked
Active
Viewed 1.7k times
1 Answers
3
You just need to change packaging in Maven to WAR and define deployment descriptor. Read this section if Spring Boot reference docs.

luboskrnac
- 23,973
- 10
- 81
- 92
-
1WebSphere 7 is only Java EE 5, so it's a Servlet 2.5 application server. That makes it a bit more difficult. The extra steps required are [described in the reference docs](http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#howto-servlet-2-5) – Andy Wilkinson Oct 21 '15 at 18:51
-
Thanks Iuboskmac and Andy. I will check it. – Vasanth Oct 22 '15 at 11:32