Java
-
JDK 9 @Deprecated Annotation Enhancements
In the post What Might a New @Deprecated Look Like?, I used the description of JEP 277 (“Enhanced Deprecation”) at…
Read More » -
Spring Batch: Multiple Format Output Writer
Being a strong advocate of Spring Batch, I’ve always talked about the notion of Spring Batch providing developers with a…
Read More » -
Java SE 8 new features tour: Calculating timespans with the new DateTime API
Cleaner, readable, and powerful coding with Java SE 8 New DateTime API JSR 310 ….. In the previous article “Processing…
Read More » -
Does my method look big in this?
How big is the following Java method? public Collection getDescription() { SystemLibrary systemLib = registry.get(SystemLibrary.class); Analysis analysis = systemLib.getCurrentAnalysis(registry); return…
Read More » -
An introduction to the Oracle Service Bus
We are in the process of designing a new system for a telecommunication provider where we have looked at the…
Read More » -
An introduction to working with JAXB
I am in the process of migrating a few modules that are dependent on Apache XMLBeans to JAXB. It has been…
Read More » -
SpringOne Platform 2016 Retrospective
I recently wrapped up attending the SpringOne Platform conference in Las Vegas. This was my first time attending SpringOne; it…
Read More » -
Remembering to Reset Thread Context Class Loader
I’m having a difficult time thinking of anything I like less about working with Java than working with class loaders.…
Read More » -
Update DynamoDB Items with Java
On a previous post we proceeded into inserting items to DynamoDB using Java. DynamoDB also supports updating items. We will…
Read More »