Coding paradigm: line by line all my opinions are belong to me

Summarizing My Play Framework experience

Play Framework 2x is getting a lot of attention lately. Since I had recent first hand experience using Play framework for java developers to develop small web application, I decided to summarize my thoughts and concerns in the form of blog entry.

Play! logo

Update The post topic and layout grew out of my control and present more or less chaotic nature of my thought flow. I’ve tried to concentrate the post around the following topics: general overview, things I liked, things I disliked, what would I do in next project, other options on the table, etc. Hopefully you can make sense out of it.

Given the length, here’s a helpful table of contents.

Showcase intro

For the disclosure, the application I developed with Play Framework consists from around 142 Java files (647 Kb), 106 Scala Html templates (416 Kb), 3 Scala files (28 Kb), 14 SQL files (478 Kb), css, js, etc…

Let me preface this in that I really don’t consider myself to be any kind of Web-development, platform or stack guru. The opinions expressed here are mine and mine only. More than that, because of my brief acquaintance with the subject - my opinions and conclusions are expected to be one-sided, shallow, incomplete and to certain degree incompetent.

The main goal of this post is to mentally iterate through my Play experience, summarize all of things I have in my head, get it down in the written form and share it with my colleagues at @galeoconsulting. Plus, I find it useful sometimes to go through previous experiences and re-evaluate past assumptions and reconsider conclusions.

In my first draft of this article it was 1-2 paragraphs large, just few pain points and thoughts. After a while, however, it became less and less concentrated, the whole thing became confusing. At one point I stopped worrying about overall structure and decided to simply go with the natural flow of my thoughts.

Brief acquaintance with Play Framework

Play Framework team describes the framework as

The High Velocity Web Framework For Java and Scala

Play is acknowledged to be full-stack family framework, which means it comes with (at least) following layers:

Development, deployment and operation tooling

Similar to Ruby on Rails, Django or your favorite flavor of similar kind of full-stack development frameworks, Play comes with it’s own version of tooling set.

With a little help of play new app-name, play debug run and play dist commands (see Play Console documentation for more) you are able to create new project skeleton, run application in debug mode or prepare standalone deployment artifacts…

For those of you who actually like their IDEs to do most of their job, there are good news for you - Play comes with decent modern IDE support. I would not vouch for all the IDEs listed there (Eclipse, IntelliJ Idea, Netbeans) since I haven’t tried them all with Play Framework. Still, I found IntelliJ Idea integration with Play Framework quite feature complete, snappy and mostly bug-free.

Server, Network, and Hosting Environment

Play dismisses JEE servlet model in favor of NIO-charged Netty network stack. As a result, Play features Stateless Web Tier, Non-blocking I/O, Real-time communication support (Web-sockets, Comet, EventSource) and more…

As a result of such bold move - Play applications are bad fitted for deployment on top of classical JEE Application containers (which as I understand is still possible, just highly not recommended). It’s not something very uncommon lately: certain niche application frameworks abandon classical well-established enterprise deployment strategies and provide their own alternatives to develop and deploy applications into production. Just to name a few: Vert.x, Dropwizard

In my opinion it’s mostly a good thing, it provides Play core developers possibility to optimize hard for particular niche. In this case Play concentrates on high-load, high-throughput and low-latency web services.

Another take on this is to consider that modern web application requirements are a decade ahead of enterprise. The enterprise / JEE world tries to solve yesterdays problems on enterprise scale of business and processes; the rest of the world tries to address tomorrow’s issues and challenges, empowering users to make them come a reality today.

I myself am in the process of finalizing my application delivery and “throwing it over the fence” into production, so I don’t have any REAL experience with Play application in operation. I’m planning to leverage most of it to play2-native-packager-plugin sbt-plugin (assembles debian package) and built-in Play evolutions (manages database schema migrations). Only the time will show how it goes.

Data Modeling

Play for Java developers by default integrates with Ebean ORM.

During the development process I grew more and more satisfied with Ebean capabilities, I even like it more than hibernate / JPA now. It was good fit for my needs, with small learning curve and almost no annoyances. The only thing I dislike so far is the lack of opportunities to specify NULLS FIRST or NULLS LAST in ORDER BY statements (the workaround is to use RawSql and manual column mapping, but it defeats the whole ORM purpose). By no means I allege Ebean is more feature-rich, faster, cleaner or simpler to use in multi-layered OSGi application (sarcasm detected), but it was good enough for my use case and didn’t step on my toes too much during development.

As mentioned above, Play comes with built-in evolutions database schema migration tool, which turned out to be very handy in practice. In development environment it watches conf/evolutions/<<ebean.server.instance>> directory for SQL script changes and allows developer either to apply those or dismiss.

As it’s often the case using agile methodologies I had to frequently adjust database schema during application development. So I had developed another small utility application to process business-analyst crafted Excel with database meta-model (sheets are database tables, columns are columns, certain meta-data gives Foreign Keys etc..) and generate database DDL and data (in Play evolutions format), application models, DAOs and admin CRUD interface. That way all I had to do was to provide new version of Excel into my utility application, refresh my main application page in browser, wait a few seconds, press button to agree with database schema update and vuala, I’m ready to go.

And the best part of it - it’s something integrated with the platform itself, is part of natural and default workflow. Any other developers running application on their own local development environments will get latest database version without any hassle, procedures or read in wiki and proceed with step by step instructions. All they have to do - to continue run application the same way they always do and then git pull will fetch new updates - framework will conveniently notify them and allow to apply latest changes.

API layer / Action Layer

Play Framework for java developers defaults to static function usage (see JavaActions for idiomatic Java examples).

The most of us, JVM programmer-vulgaris kind, come from C/C++, OOP, Spring world with JEE system legacy behind our backs. First we were taught to learn structures, then algorithms, then OOP and abstractions, then someone comes in and makes all of us look as fools, because patterns are the king. Then, few years after another newcomer makes all of look as fools again - we should use Scala / Haskell / XYZ and write our code monads / burritoto style ;) The same thing applies to application layers as well.

So, my first wtf reaction is mostly because of what influence Spring, Guice and similar programming models has had on me. I’m used to layer applications certain way now. And it was mentally challenging to me rethink this approach with Play stack. Initially it was something unpleasant / mentally challenging at least, however as time moved on I got more and more used to program things that way and now I’m mentally ok now with this model.

Play 2.x series core is written in Scala programming language (which itself is another buzz-generating topic out there, especially if you follow Twitter and LinkedIn engineering blog posts). The Play core is built around Akka actors and Netty network stack, both promote functional programming style, state immutability, event-loops, message passing etc.., which idiomatically maps to first class functions or function objects (I know I’m functional paradigm n00b and might have mis-used terminology). I personally hope that Java8 and Project Lambda will provide lots of better alternatives of expressing this kind of stuff with Java language itself. Still, at the moment of writing, Java7 is the current bleeding technology; thus static functions are the most cleanest and easiest way to express just code, no shared state other than method arguments and framework-methods to access current execution scope programming model. The whole API and stack design screams out of it, the whole stack points you mentally in process event, share nothing, cache aggressively thinking model.

I still don’t believe Play for Java approach is the only right design approach. Plus, I have to mention here what Play provides means to integrate with Spring or Guice IoC containers (e.g. see Play Java Spring template and Play Guice template). In my particular case I decided to go without any additional fancy toolkits or IoC, both as experiment and simplification instrument. My application was small enough, with most of the boilerplate code and coupling auto-generated by my other utility application; the rest of business logic was arranged in specific controller classes and in shared Domain Knowledge utility services. At the moment I’m pretty ok with the application layout and layers: I don’t find it too difficult or too spaghetti. Of course, the real implications of design decisions made and their consequences I will see only in system operations and support.

V for Vendetta or Scala Templates for Views

Play Scala Templates is the feature I initially considered one of the most controversial Play features.

From day zero I hated that it forces me to learn new template programming language (basically Scala subset). Plus, initially I disliked the fact that Scala templates are generally much more imperative, than declarative. It reminded me old good PHP scripts with business process logic literally littered around and mixed with visualization.

I still believe declarative approach should be used as much as possible for application views (encourages business process and logic decoupling from the actual view). However I also find Scala Template reusable blocks, implicit form field decoration and view compositions very powerful and flexible.

At the end of the day I came to conclusion I love Scala Templates engine. Of course it’s easy to misuse them the same way as most PHP code does. Openly speaking, I myself performed quite a lot model lookups (-> SQL queries) from auto generated template views, it was just so dead simple and easy to render dropdown fields in Admin Crud interface this way. Still, if used properly with certain cross-layer constraints - Scala Templates are extremely convenient and useful.

Media type support

Play Framework provides built-in Json content support and XML content support.

Saying that I must admit that I find Json support quite decent (Play Json support is backed by popular Jackson toolkit). However XML support ir disappointingly limited comparing to Spring MVC (basically Play just exposes request body as org.w3c.dom.Document and you are free to use SAX parser or whatever else to process it).

During my particular application development I switched to FasterXML/jackson-dataformat-xml library for simple, light-weight and more feature-rich XML support. Basically I was able to continue use my Json beans and serialize / deserialize them either as Json or as XML depending on context.

I came to conclusion that XML is treated as second class citizen in the framework, all the love, care and polishing comes to Json. XML is that poor neighbour which with envy watches Json riding his Bentley in front of his doors ;)

The things I liked most about Play Framework

  • Low entry level

    I believe Play Framework has almost the lowest entry level to Java full-stack web framework I have seen so far. For starters it comes with it’s Typesafe Activator and multiple starter templates.

    I do honestly believe you don’t have to know a lot / recognize a lot of concepts to start developing Play application. Play’s helloworld is really no more different that Java static void main(String[]args). And you don’t need to know anything how to bundle things, how to deploy them, WARs or JARs - what’s that?

    Saying that I have to note that when you overcome helloworld application level and want to move forward, you might start to struggle first, since there are no really tons of qualitative documentation available. You should either have good basic understanding of how things works or where and how look for solution / help to stay productive.

    So, I think entry level is extremely low, however getting to experienced plateau might be a challenge.

  • Static typing (templates, routes)

    Almost everything (except i18N messages most noticeably) is statically typed and checked during compilation. All the web application routes to controller methods, all the view templates are compiled and checked before going out into production. It’s freakingly awesome, I don’t have to worry about mistyping url, miscasting request parameter or accidental change introduced during refactoring. And I don’t need to rely on integration / Selenium tests to catch this type of errors, I get this kind of feedback almost instantly on save / refresh.

    Now I have single point of truth for url definitions, conf/routes file. There is no other place to look into. In my views and my controller code I just reference compile-time generated binding, if something is mis-configured or mis-used - compile time error will be displayed.

    I had quite positive experience with IntelliJ Idea IDE using and navigating Play routes during application development. So, it’s not something inconvenient (I didn’t have to launch anything, wait for something or perform any other kind of manual configuration magic; it just worked).

  • JsRoutes

    The same thing as routes above, but to invoke controllers action from client-side Javascript. It makes just so strangely easy and convenient to call server-side action from the browser, and still I don’t need to worry about using right URL or using right HTTP method etc … I even still reference it using statically typed and compile-time checked helper methods. What can I say? Convenient.

The things I disliked about Play Framework

The list in the order of dislike:

  • Scala vs Java battle

    Typesafe (the company behind Scala and Play Framework) poses Scala as general programming language which is evolutionary improvement over current programming languages and paradigms. The ultimate goal in my understanding is not to accomplish JVM developer vulgaris, but eventually to replace the Java language or become the serious alternative.

    The Play2 core is written in Scala and Typesafe provide separate version of Play modules for developers who still wants to use Java for their daily job (silly me).

    The problems appear when you want to for example - dynamically update certain parts of configurations during application startup, or you notice that form field validation actually behaves differently in Scala and Java versions (different error messages and Java version does not provides all the validations Scala version does) etc… Mostly those are small things, however it’s still something I had to struggle with or inspect and compare Scala and Java version internals.

  • Compatibility

    Play is famously known for rewriting Play1 core from Java -> Scala, replacing view system etc… So, historical record is pretty bad. I can’t not to be afraid the next major version release won’t introduce, for example, Clojure based stack if it will become good-selling trend).

    Other side of the problem is Scala itself. As I understand it - Scala might (and often is) binary incompatible between version updates (even minor ones). As an end result - if Play core team decides to change it’s compiler version to benefit from new Scala features or bug fixes - it potentially will introduce dependency hell for end developers to upgrade (dependencies might either be binary incompatible or their new updated recompiled version might be missing).

  • Compilation time

    Even with my small application, SSD disk and 8Gb Ram - compilation took up to 30 secs or in some cases up to 1-2 min. It places it nearby GWT, which is sad for both of those frameworks.

  • Sbt

    It’s the system I just don’t get. So far I’ve some sort of experience with Ant, Maven, Gradle, even Leiningen, Rake and Buildr. But I don’t get sbt, just don’t. And actually I don’t want and couldn’t care less (maybe it’s the problem).

  • Module maturity

    I’m used to Spring Security authentication and authorization programming model and maturity. I was unpleasantly suprised with the state of things with Play modules. Some of them seem mature, but require quite a lot of boilerplate code to start with. Other just break binary compatibility too often (it happens when the only version to depend to in public repository is SNAPSHOT one).

    I wish auth modules would the only example to point to, however I had similar experience with different modules. I get it, it happens. The shitty thing is when you don’t have a lot of alternatives to choose from. Something breaks and you are forced into options: either to rollback to snapshot, maintain module or fix the module dependency. It’s not something you could always afford to spend your time on, especially on tight calendar schedule.

  • Developer platform support (e.g. Windows)

    Shitty Windows platform support on 2.2x branches was the reason I stuck with 2.1.5 version. As I understood from GitHub issues’ comments and Play mailing lists - the core team doesn’t have testing on Windows integrated into their develop pipelines (they mostly are Mac OS X and Linux users).

    I would expect something like this from beta or release candidate, however it was strange to see it in release versions. But! I might misunderstood Play version and release concept, maybe it’s something expected to happen until some certain version is marked as production ready.

Would I choose Play for my next project

The short answer is classical it depends ;) In case my next project is Json service, or requires client rich interaction, or could be fitted in micro-service category - most definitely yes. There are even crazy enough people to develop advanced online bank system using Play1 Framework.

I am concerned about Play compatibility, poor documentation and lack of available developer resources. For the sake of example, let take the same Online Bank system - Play Framework would not be either my first choice, nor second one. But I am Ok to recommend Play to develop small replace-able non-critical application / micro-service / set of Akka actors or whatever small and requiring high-throughput and low-latency.

Other frameworks in my consideration list

Here is the list of frameworks I might consider to develop my next small experimental project (the list is in the order of appeal):


NB. If you've found typos or errors, please suggest a correction or edit on github.
comments powered by Disqus