You would have seen that many times we are writing out own servlet in Liferay portal to achieve some specific use case.
In DXP, You can still cont. with such implementation and here you will see how you can write your servlet application as module.
Create liferay module type of API using developer studio or blade ci.
In bnd file:
Bundle-Name: test-servlet
Bundle-SymbolicName: TestServlet
Bundle-Version: 1.0.0
Web-ContextPath: /test
In build.gradle:
dependencies {
compileOnly group: "javax.servlet", name: "javax.servlet-api",...