What's the most minimal Java web MVC framework

2019-02-04 22:56发布

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.

9条回答
一夜七次
2楼-- · 2019-02-04 23:39

check out (µ)Micro and see if it is light enough :)

HTH - florin

查看更多
SAY GOODBYE
3楼-- · 2019-02-04 23:42

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.

查看更多
The star\"
4楼-- · 2019-02-04 23:48

Checkout spark. Its as mimimalistic as it can get.

查看更多
登录 后发表回答