Home > Back-end >  Deploy Spring Boot project to WebSphere 8.5.5
Deploy Spring Boot project to WebSphere 8.5.5

Time:03-29

I'm trying to deploy my spring boot project (made by spring initializr) with maven (but same issue with gradle) on WebSphere Application Server 8.5.5 but it seems impossible to me. Every-time I try to add to server from "Add and Remove" it says "There are no resources that can be added or removed from the server". So I tried changing Dynamic Web Module on Project properties --> project facets but nothing changed. Is it possible to deploy on WAS 8.5.5?

CodePudding user response:

I do not understand your problem, it is not clear to me, you can not deploy the project on WebSphere? Or you can not connect your development environment to WebSphere for direct deploy?

CodePudding user response:

Similar issue for me. I am wanting to build a simple REST project in RAD using WAS 8.5.5 server and Maven. Recently aware of issues between Jersey and WAS. So, used Spring Initializr to create a Maven project that I imported to workspace. I right-clicked project and elected to run-as... but server is not an option in dropdown listenter image description here. Like previous user here stated, add and remove on Websphere server is also not an option.

I will say that if I elect to run-as... and select "Maven test". It runs successfully. But, I want to run this in conjunction with Websphere server. Is there a way to take a project from Spring Initializr, import to workspace, and add it to Websphere server?

  • Related