Lorenzo
Lorenzo

Reputation: 4648

Is there something like CherryPy or Cerise in the Java world?

CherryPy and Cerise are two small frameworks that implement nothing but the barebones of a web-framework and I love their simplicity: in fact I reckon that if Classic ASP was implemented that way (and didn't pretty much require VBScript) I could have settled for it and lived happily ever after.

But now I'm living at the borders of the Java world and would like to know if there's something similar to these 2 frameworks and that doesn't try to take control away from you. My requrements would be that they have an:

Thanks

--

Upvotes: 2

Views: 883

Answers (3)

Nikhil
Nikhil

Reputation: 5771

OOWeb, essentially a port of CherryPy.

Upvotes: 2

Tuxified
Tuxified

Reputation: 675

Groovy and Grails. If you like MVC or even have a existing library written in Java/JVM, that are the tools you're looking for!

Grails aims to bring the "coding by convention" paradigm to Groovy. It's an open-source web application framework that leverages the Groovy language and complements Java Web development. You can use Grails as a standalone development environment that hides all configuration details or integrate your Java business logic. Grails aims to make development as simple as possible and hence should appeal to a wide range of developers not just those from the Java community.

Upvotes: 0

lucas
lucas

Reputation: 6971

Stripes

URLs to methods, check, form validation, check. Powerful but stays out of your way unless you need it.

Upvotes: 2

Related Questions