Does anyone have any opinions on DropWizard as a framework? Is it the minimalist web framework for Java, similar to Flask for Python?
I've heard good things about it, but my understanding is it's ideal for creating REST endpoints, so it doesn't have some standards MVC stuff out of the box. Spark is a JVM version of Sinatra which may be closer to what you're looking for.
https://dropwizard.github.io/dropwizard/manual/views.html
"The dropwizard-forms module provides you with a support for multi-part forms via Jersey":
https://dropwizard.github.io/dropwizard/manual/forms.html
If you can render HTML in responses and accept multipart/form-data in requests, does Jersey become an adequate MVC framework? If not, what is it missing?