Posts

Showing posts with the label groovy

Spring HATEOAS - Embedded Resources with HAL

One common issue I see on the web is people having trouble rendering their JSON objects in HAL with embedded resources. For this example I am using groovy, but it explains how to configure the rendering of resources in a spring applicaiton.

Rails Unfit for Microservices?

This is a relatively informal blog post. Looking more for feedback and response to get a conversation started. The prerequisite to this thread is that you have a fairly good understanding of Microservices. If not at least read the following link: http://martinfowler.com/articles/microservices.html

Adding Groovy Sources to Maven Build Path

Say you want to run a groovy class method from your Java project in Maven. You've placed the script file at src/main/groovy/script/MyGroovyScriptClass.groovy . In Java, you would load the class and execute its method like so:

Grails Part 3 - Building a CRUD Application

Click here to view the full tutorial Continuing series: Developing a Grails Web Application. This application will use the Grails Framework to develop a web application using: 1. MongoDB 2. Spring Security 3. Apache CXF 4. Jetty Web Server 5.  Maven build integration  => Removed upon Request Previous Post: Grails Part 2 - Configuring the Plugins View Project on Github: Grails MongoDB Demo These Instructions Will Walk Through: Building a CRUD Application Building the Domain Model Controllers using Grails Scaffolding