0

I have a simple Spring Boot JMS app like this. It have no web-layer and I don't want to add web layer to that app. It should be just one JMS microservice, hidden from web. But I want to run it inside TomEE (as EJB or something). How can I do it?

Ivan Zelenskyy
  • 659
  • 9
  • 26

1 Answers1

0

you can deploy your app as an ear without any webmodule. Alternatively you can deploy it to openejb-standalone instead of tomee.

Romain Manni-Bucau
  • 3,354
  • 1
  • 16
  • 13