Multithreading in Java

There are several key terms which one must know to get a picture of how multithreading works in Java. The post deals mostly with the java multithreading classes that come builtin with java. Runnable A Runnable is basically a type of class (Runnable is an Interface) that can be put Read more

Installing Jenkins with java 1.8 using java tar ball

For installing jenkins on Ubuntu 14.04 using Java RPM do the following steps. Step 1: Download java tar ball file from http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html Step 2: Scp the files from your local machine to your server Step 3: Install java sudo tar xvzf jdk-8u5-linux-i586.tar.gz -C /usr/java Step 4: Setup java. I downloaded Read more