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…
and SSL: https://groups.google.com/d/msg/play-framework/FeTUDQwaEPg/q... But not TLS (and client certificates, yet), that is for Play 2.2: https://github.com/playframework/Play20/pull/475
Play framework 2.10 released
51–60 of 76 posts
Re: Play framework 2.10 released
#52a question (not about the framework, but about the linked webpage) - this awesome effect where i scroll down and the pictures (next to the "Developer friendly" headline) "fold up", is there an animation-lib that does this? how is it called? it's awesome, i want it.
Re: Play framework 2.10 released
#53Does 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...
I'm also an Django developer and did a play application some time back[0], so maybe I can give some insight on development with Play!. My background in functional program was non-existent at the time so going in I was already going to have problems. I choose to create my project as Scala project since I wanted to learn the tech. While Scala can be done with normal OOP/procedure programming I wanted to have the full a…
Re: Play framework 2.10 released
#54Does 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...
I'm also an Django developer and did a play application some time back[0], so maybe I can give some insight on development with Play!. My background in functional program was non-existent at the time so going in I was already going to have problems. I choose to create my project as Scala project since I wanted to learn the tech. While Scala can be done with normal OOP/procedure programming I wanted to have the full a…
Re: Play framework 2.10 released
#55Re: Play framework 2.10 released
#56Does 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...
I'm also an Django developer and did a play application some time back[0], so maybe I can give some insight on development with Play!. My background in functional program was non-existent at the time so going in I was already going to have problems. I choose to create my project as Scala project since I wanted to learn the tech. While Scala can be done with normal OOP/procedure programming I wanted to have the full a…
Re: Play framework 2.10 released
#57Why did they decide to use static methods for the controllers?
Re: Play framework 2.10 released
#58Why did they decide to use static methods for the controllers?
Stated by Guillaume Bort here[1] Play uses static methods only when it makes sense: - in the controller layer, because controllers are not object oriented. Controllers act as mapper between the HTTP world (that is stateless, and request/response based) and the Model layer that is fully object oriented. [1]: http://stackoverflow.com/questions/5192904/play-framework-us...
Re: Play framework 2.10 released
#59Re: Play framework 2.10 released
#60Does anyone knows what are pros/cons using play with java/scala?