Live data from Hacker News

Play framework 2.10 released

playframework.com

11–20 of 76 posts

Re: Play framework 2.10 released

#11
Things are moving fast... I am still on 1.2.X for my applications as I fear the migration models, controllers and especially of Groovy templates to Scala templates.

Especially the increased compilation times when I hit reload are a turn of.

Re: Play framework 2.10 released

#12
Does anyone know a good Django/Play comparison or Rails/Play comparison? Or a tutorial along the lines of "Play for Rails developers" or "Play for Django developers"?

I'm learning Scala and I want to play with it for webdev, but I know how much "hidden effort" is in learning any framework so i's really love something like this...

Re: Play framework 2.10 released

#17
Release announcement - https://groups.google.com/forum/?fromgroups=#!topic/play-fra...

Major highlights of this release include:

* Migration to Scala 2.10

* Migration to Scala concurrent Futures

* Modularisation of Play itself

* Modularisation of routes files

* Better thread management and HTTP context propagation in Java projects

* Managed controller instantiation

* New Scala JSON API

* New Filter API with built in CSRF protection

* RequireJS support

* Content negotiation

* Improved Iteratee API

Re: Play framework 2.10 released

#20
post #7

2.0.4 had bad defaults and documentation. Some highlights: - half baked config (no array. multiple values can be hacked as `foo.bar={a: 1, b: 1}`) - can only set logging level in the config. and, xml logger config doesn't have application.conf values (logger.* in .conf are useless) - routes dsl (meh) - bad db connection pool. it kills all other connections if a connection fails, and goes into error state instead of r…

the config has arrays, it is a json superset. foo.bar = [1, 1]
Post reply on HN