groovy

Quick Tip: How To Include Logback Configuration In Grails Plugins

Published July 24, 2018Bud Byrd10 min read

By default, Grails excludes the logback.groovy file (among others) when plugins are assembled into JAR files, and for good reason. A plugin should not include the logger configuration, since the plugin would unexpectedly influence the configuration of the applications that include it.

Read more →

Extend existing Java classes with Groovy extension modules

Published July 24, 2018Bud Byrd10 min read

I've been working on an update to the http-requests library, and wanted to remove the Groovy dependency to make it more portable. I like a lot of the conveniences Groovy affords the library, as well as some of the entity converters that use Groovy classes, so I wanted to find a way to still provide those features even after ripping Groovy-specific methods out of the main interfaces.

Read more →

Introducing The http-requests Library

Published May 12, 2016Bud Byrd10 min read

I’ve recently put a lot of work into a new library I’ve named http-requests. I had previously written a project called jersey-request…

Read more →

Simplifying Jersey Client with a builder-style syntax

Published February 08, 2013Bud Byrd10 min read

I recently looked into an issue my friend was having with an HTTP call and its failure to correctly convert JSON. The conversion problem is…

Read more →

JAX-RS and HashMaps

Published February 24, 2012Bud Byrd5 min read

I started working with the Grails framework recently when I started working for my new company. We were writing an application that provided…

Read more →

Copyright © 2020 Bud Byrd.