Tillmann Seidel

Tillmann Seidel

How to finally delete documents in CouchDB

April 20, 2015

Image via CC from Sh4rp\_i Documents in Apache CouchDB are usually not really deleted but rather marked as such.

Parsing JSON responses with JMeter

June 12, 2014

Image via CC from Hades2k JSON is becoming more and more important as a data exchange format, especially in Ajax web frameworks and RESTful web services.

Get rid of your StringUtils!

November 6, 2013

Image via CC from [Alexei Kuznetsov](https://www.flickr.com/photos/eofstr/5480421664) Probably every Java developer has developed at least one String utility class in his life.

Mutable variable capture in anonymous Java classes

August 19, 2013

The Java compiler requires local variables of enclosing contexts referenced in anonymous classes (so-called captured variables) to be final.

Invisible chaos - mastering white spaces in Eclipse

July 9, 2013

By Pöllö (Own work) [CC-BY-3.0], via Wikimedia Commons Did you ever look at a colleague’s Java source code file which contained mixed spaces and tabs for indentation, making the code completely unreadable?

UTF-8 RAP I18N

June 18, 2013

I always wanted to write a blog post with a title consisting of just acronyms and numeronyms - here it is!

Using EasyMock class extensions in Eclipse PDE tests

June 3, 2013

EasyMock is a powerful framework to create mock objects to use in Java JUnit tests.

When an exception gets lost

April 25, 2013

Image via CC from Paul Gorbould Recently I fell into the lost exception pitfall - when an exception thrown in a try block gets lost because another exception is thrown in the finally block.

Running Eclipse applications on Windows 8

March 28, 2013

Reading the title, you might ask why this could be a problem.

Use your HEAD - checking CouchDB document existence

March 1, 2013

One common task when working with CouchDB is to find out whether a document with a given ID exists.

Creating Tomcat heap dumps on Windows

January 31, 2013

One option for detecting memory leaks in Java is the analysis of heap dumps.

Finding the right OSGi services using the objectclass property

November 30, 2012

Recently I wanted to use the good old ServiceTracker to get access to OSGi services registered under a specific interface and matching a given filter.

Filtering tables in SWT/JFace

October 26, 2012

Working with tables or trees with more than a handful of rows, you quickly find that you need a way to filter or search for content, otherwise they become unusable.

Sorting out listener implementations in Java

September 21, 2012

Recently I scanned the source code of our current Eclipse RCP/RAP project for occurrences of the Listener (or Observer) pattern.

Improving reuse of JFace Data Binding validators

August 22, 2012

JFace Data Binding allows you to attach only one validator to a binding.

Reducing CouchDB disk space consumption

July 11, 2012

Apache CouchDB offers high availability, excellent throughput and scalability. These goals were achieved using immutable data structures - but they have a price: disk space.

Using the Whiteboard Pattern with RAP

June 8, 2012

When adopting the Whiteboard Pattern for one of our Eclipse RAP based web applications, we stumbled upon a problem concerning the session scope of events.