Enterprise Java
-
Cobertura and Maven: Code Coverage for Integration and Unit Tests
On the turmeric project, we maintain a nightly dashboard. On the dash board we collect statistics about the project, including…
Read More » -
How to write better POJO Services
In Java, you can easily implements some business logic in a Plain Old Java Object (POJO) classes, and you can…
Read More » -
Service-Oriented UI with JSF
In large software development projects, service-oriented architecture is very common because it provides a functional interface that can be used…
Read More » -
Tips for testing with Java
Introduction I love automated testing. In a rare diversion into op-ed1 I thought a put few thoughts (read – opinions)…
Read More » -
JSF Component Libraries – Quality is more than zero bugs
It has been a while since I last looked at the quality of the three major JSF component libraries. In…
Read More » -
How to manage Quartz remotely
Option 1: JMX Many people asked can they manage Quartz via JMX, and I am not sure why Quartz doc…
Read More » -
Spring Profiles and Java Configuration
My last blog introduced Spring 3.1’s profiles and explained both the business case for using them and demonstrated their use…
Read More » -
Guaranteed messaging for topics, the JMS spec, and ActiveMQ
Recently a customer asked me to look closer at ActiveMQ’s implementation of “persistent” messages, how it applies to topics, and…
Read More » -
Spring Scoped Proxy
Consider two Spring beans defined this way: @Component class SingletonScopedBean{ @Autowired private PrototypeScopedBean prototypeScopedBean; public String getState(){ return this.prototypeScopedBean.getState(); }…
Read More »