↧
Spring Tip: Check for existence of Bean during startup
Sometimes we are working on an application where we have no control over specific Spring bean implementations. Nevertheless we want to check for the existence (or duplication) of these bean...
View ArticleCompare JAR files content; decompiling class files
When I was recently working on a large restructuring and refactoring where I also replaced Ant by Maven, it was really necessary to compare the complete content of two different JAR files. It was...
View ArticleHow to test for an exception in JUnit
Testing for exceptions in JUnit is something we have to deal with! We want to test if an exception occurs in a particular situation, or even if the exception contains a particular message. The question...
View Article