Monthly Archives: October 2014

Tomcat – Context in server.xml

When Eclipse deploy web application in the existing Tomcat server, it will create Context element in server.xml. The details of Context element in Tomcat is The Context element represents a web application, which is run within a particular virtual host. … Continue reading

Posted in Web | Leave a comment

Java – detecting duplicate class define with maven

mvn dependency:analyze -DcheckDuplicateClasses blog for details Finding Duplicate Class Definitions Using Maven

Posted in Java, Programming | Leave a comment

Web – SoapUI is a nice tool to test Web API

http://www.soapui.org/

Posted in Web | Leave a comment

Java – Message bus library (event subscribe / unsubscribe)

com.google.common.eventbus is a quiet useful library if you would like to create a quick and simple solution for message bus. You can find more details from the following link http://docs.guava-libraries.googlecode.com/git/javadoc/com/google/common/eventbus/package-summary.html

Posted in Java, Programming | Tagged | Leave a comment