Enterprise Java
-
Connecting to Cassandra from Java
In my post Hello Cassandra, I looked at downloading the Cassandra NoSQL database and using cqlsh to connect to a…
Read More » -
Rocking with mongodb on spring boot
I’m a fan of Spring Boot and here’s my mongodb example project on Spring Boot. Most of the mongodb example…
Read More » -
Implementing correlation ids in Spring Boot (for distributed tracing in SOA/microservices)
After attending Sam Newman’s microservice talks at Geecon last week I started to think more about what is most likely…
Read More » -
JPA 2.1 Entity Graph – Part 2: Define lazy/eager loading at runtime
This is my second post on JPA 2.1 Entity Graphs. The first post described the usage of named entity graphs.…
Read More » -
Writing Clean Tests – New Considered Harmful
It is pretty hard to figure out a good definition for clean code because everyone of us has our own…
Read More » -
JPA 2.1 Entity Graph – Part 1: Named entity graphs
Lazy loading was often an issue with JPA 2.0. You have to define at the entity if you want to…
Read More » -
Generate your JAXB classes in a second with xjc
Since JAXB is part of the JDK, it is one of the most often used frameworks to process XML documents.…
Read More » -
SSL encrypted EJB calls with JBoss AS 7
Encrypting the communication between client and server provides improved security and privacy protection for your system. This can be an…
Read More » -
Spring Rest Controller with angularjs resource
Angularjs ngResource is an angularjs module for interacting with REST based services. I used it recently for a small project…
Read More »