I'm looking for a Java web framework that requires the most minimal amount of configuration for a very small app. Spring & Struts are definitely overkill here. This is an app that could be written without any framework at all but I would prefer to use a minimal MVC framework if I can find one.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
check out (µ)Micro and see if it is light enough :)
HTH - florin
The most minimal way to do a Java web app would be to use JSPs to display your content and Just plain Java in the back end.
This would require almost no configuration.
The only requirements for that is the J2SE and Tomcat for hosting.
Checkout spark. Its as mimimalistic as it can get.