We have a SOAP based service that is built with EJB stack and it runs on jboss EAP 7.1.
We need to convert and merge with ongoing project (This new project spring boot app).
As initial step, we merged the code with new app, got rid of compilation errors, replaced the EJB annotations with spring annotations, build and deployed.
When we try to access the URL, its giving NPE.
We understand that EJBs are managed by container and spring is not aware of them until we tell spring to manage those beans.
I wonder if there is a way to work with those EJB components without converting them to spring beans. Is there a way to tell spring to manage the EJBs as well?