1

Possible Duplicate:
Simple Java web framework

I went to the alt.net catchup in Melbourne last night and there was a demo of the Nancy web framework

Is there a similar micro framework in Java?

Community
  • 1
  • 1
rabs
  • 1,737
  • 2
  • 15
  • 29
  • Thanks Greg Ill check that out it looks the same – rabs Feb 28 '12 at 23:27
  • Play (mentioned in the link) is not particularly lightweight. Something that runs on a JVM, also based on Sinatra, is Scalatra. You would have to write a little bit of code in Scala, but it can call your Java objects. – Eduardo Feb 28 '12 at 23:31
  • Thanks Eduardo, I had a flick through the other post and yeah seems like there isn't really anything as easy to get set up and going as Nancy.. its a shame. – rabs Feb 28 '12 at 23:37

1 Answers1

1

Haven't tried these, but possibilities include (at least if you mean the Jave the platform, not just the language):

  • Spark - Micro web framework in Java
  • Scalatra - Micro web framework in Scala
  • RatPack - Micro web framework in Groovy
Christian Horsdal
  • 4,838
  • 20
  • 24