I have a very simple REST server. Simple in that it is stateless and
delegates almost all of its work to JOB servers that run in other
processes. This allows me to spin up any number of REST servers.
So given this sort of setup? What advantage do I get from Servlets? Is
there any reason I shouldn't just configure this for Grizzly HTTP?
Is performance or load any different between the two? Right now it runs
fine with Grizzly HTTP but I didn't know if I am losing anything by not
having servlets. Seems like all the filtering I want to do I can just do
with JAX-RS filters -- I don't need servlet style context filters.
I'm just making sure I didn't make a naive choice. It feels nice having a
simple HTTP server without the servlet framework.
R.