External Components Deployment to Mendix Server

0
As far as I understand Mendix application server has built-in Jetty WebServer which has a Servlet container. I have one small non-mendix war (without EJB, just servlet based). I don't what to start separate web server (Tomcat/JBoss or other) just for deploying it and wandering is it possible to deploy external war component to embedded jetty servlet container. Wouldn't it be bad practice and not recommended?
asked
1 answers
1

To be exact, the current Mendix Application Container doesn't currently actually serve servlets, but sends requests straight through to the Runtime. It was also never meant to serve servlets (or third party apps), just be mean and lean and good at hosting Mendix apps.

If I were you, I'd just run a separate Tomcat container to run your own application, as it has a lot more configuration options to run your own app (again: the Mendix appcontainer is meant to run Mendix apps, not configure/run other apps). If resources are an issue, you should look into Jetty, as it's a really small container that performs amazingly well with a small footprint. (this, and the customization-via-code, are the main reasons we use it at Mendix).

answered