Play Framework Custom Integration Test Configuration

Posted on Fri 08 May 2015 in Continuous Integration • Tagged with play_framework, ci

I’ve been using the Play Framework 2.3 a lot recently for Java development, and have been finding it really easy to use. However, sometimes documentation is scarce, or doesn’t have an example of what it is I am looking for. In this blog post, I discuss how …


Continue reading

More Than One FieldConstructor with Play Framework

Posted on Sun 08 February 2015 in Development • Tagged with java, play_framework

Often times in the Play Framework, I need to have more than one custom field constructor. Figuring out how to do this the first time took a lot of work to get it right. Here I discuss how you can create and use more than one custom field constructor in …


Continue reading

Writing a Play Framework Plugin in Java

Posted on Tue 27 January 2015 in Development • Tagged with java, play_framework

I really like using the Play Framework to write simple web applications and REST interfaces. One of the interesting things about the Play Framework is that it is meant to be both stateless and asynchronous. The stateless nature of the framework makes it easy to scale very quickly, since all …


Continue reading