Enterprise Java
-
Why I like Spring bean aliasing
Spring framework is widely used as a dependency injection container, and that’s for good reasons. First of all, it facilitates…
Read More » -
WebSocket and Java
WebSocket is a cool new(ish) technology that allows real-time, two-way communication between the browser and the server, with almost no…
Read More » -
Building Distributed Workflow Applications on Amazon with Camel
Pipeline with SNS-SQS A workflow consist of independent tasks performed in particular sequence determined by dynamic conditions. Very often a…
Read More » -
Hibernate Facts: Always check Criteria API SQL queries
Criteria API is very useful for dynamically building queries, but that’s the only use case where I’d use it. Whenever…
Read More » -
Scaling Spring Batch – Step Partitioning
We have talked about how to get up and running with Spring Batch in a few of previous articles. Now,…
Read More » -
Dozer: Mapping JAXB Objects to Business/Domain Objects
Dozer is an open source (Apache 2 license) "Java Bean to Java Bean mapper that recursively copies data from one…
Read More » -
JOOQ Facts: From JPA Annotations to JOOQ Table Mappings
JOOQ is a neat framework, and it addresses a long issue I’ve had with advanced dynamic filtered queries. While Hibernate…
Read More » -
HOW-TO: Get started quickly with Spring 4.0 to build a simple REST-Like API (walkthrough)
HOW-TO: Get started quickly with Spring 4.0 to build a simple REST-Like API (walkthrough) Yet another tutorial about creating Web…
Read More » -
Spring REST: Exception handling vol. 3
It’s a last article from the series about Spring REST exception handling. Finally this time I will talk about handling…
Read More »