Announcing http-requests 2.0
Lately, I’ve been hard at work refactoring the http-requests library in an effort to simplify the codebase and limit its scope in order to make it more maintainable. I also wanted to broaden the audience that might be able to take advantage of the library and its approach. After a critical review of the state of the library, I’ve completed version 2.0 of the library.
Read more →Quick Tip: How To Include Logback Configuration In Grails Plugins
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
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
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
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 →