Blogs about: Enterprise Java
Featured Blog
HashMap is not a thread-safe structure.
Last few months I have seen too much code where a HashMap (without any extra synchronization) is used instead of a thread-safe alternative like the ConcurrentHashMap or the less concurrent but still … more »
Blog of Peter Veentjer
HashMap is not a thread-safe structure.
— 3 comments
pveentjer wrote 2 months ago: Last few months I have seen too much code where a HashMap (without any extra synchronization) is us … more »
JAX India 2008: Enterprise Conference in India
Mohamed wrote 4 months ago: Event: JAX India 2008 (Website) Organized By: S&S Media (India) Key Dates: JAX India 2008 Confer … more »
Executing long running task from UI
pveentjer wrote 7 months ago: A colleague asked me how one could prevent the execution a long running task on some UI thread (e.g … more »
Use the real database when testing
— 2 comments
pveentjer wrote 8 months ago: While unit/integration testing the repositories (dao’s in yesterdays lingo), try to use the sa … more »
Lightweight Batch Processing I: Intro
— 4 comments
pveentjer wrote 8 months ago: If you are lucky, your application is a lot more complex than just the standard request/response web … more »
Notes from EJB3 Talk
dividebyzer0 wrote 8 months ago: I’ve mind-mapped my notes from the EJB3 Talk last month. You can find an image of the mind ma … more »
The use of Maven cripples the mind
— 21 comments
pveentjer wrote 8 months ago: I have used Maven 1.1 and 2 for the last 1.5 years, but it always am boggled by the utter complexity … more »
Versioned id's
— 3 comments
pveentjer wrote 9 months ago: If you are using multiple system transactions that span a single business transaction, there is chan … more »
Learning the basics of Service Oriented Architecture
— 6 comments
Vaibhav Pandey wrote 10 months ago: In computing, the term Service-oriented architecture (SOA) expresses a software architectural concep … more »
Service layer woes
pveentjer wrote 1 year ago: I have posted an entry on the blog of my employer: http://blog.xebia.com/2007/07/18/service-layer-wo … more »
RIA and scalability
pveentjer wrote 1 year ago: At the moment I’m writing a blog for the company website about the new process functionality i … more »
JAX India 2007
— 3 comments
Vaibhav Pandey wrote 1 year ago: Yes, you guessed it right. JAX India 2007 is a conference for Enterprise Java, SOA, Spring,Web Servi … more »
Spring and visibility problems
— 1 comment
pveentjer wrote 1 year ago: I posted a blogentry on Spring and visibility problems on the company website. If you want to read t … more »
Sharing Hibernate entities between threads
— 1 comment
pveentjer wrote 1 year ago: A few weeks ago I had a discussion with another developer about sharing entities (mapped by Hibernat … more »
Fixing deadlocks
pveentjer wrote 1 year ago: I’m working on a concurrency library, and I was wondering about deadlocks in complex concurren … more »
Repeating tasks
— 1 comment
pveentjer wrote 1 year ago: Introduction On a few server side projects I have worked on, I needed a special threading structure … more »
Can your threads wait?
— 2 comments
pveentjer wrote 1 year ago: Introduction After quite some time, I have decided to pick up my concurrency library and I hope to m … more »
Oracle and locking thoughts
pveentjer wrote 1 year ago: Introduction I was talking with a colleague about a locking issue in Oracle. We have the following c … more »
Pipelines and priorities
pveentjer wrote 1 year ago: Abstract A pipeline (aka ‘Pipes and Filters’) is a great architectural pattern for build … more »
