Log4j
The following blog is a simple insight into a very helpful and widely used framework for logging purpose. Bingo !!! You are right – Log4j… Read More »Log4j
The following blog is a simple insight into a very helpful and widely used framework for logging purpose. Bingo !!! You are right – Log4j… Read More »Log4j
Hi Friends !!! Recently I came across a requirement where in I was supposed to sort a Custom Class based on multiple parameters. Problem Statement… Read More »Dynamic Sorting Utility
The project testcases can be debugged in maven by the java remote dubugging options. Just add the debugging options along with the mvn test command.… Read More »Debugging tests cases with maven : java remote debugging
The most common question you ever come round with in Java is : “Why is String class called Immutable ?” ( No Offence Intended !!!… Read More »Immutability
This is an stack overflow error maven build ends up with certain number of times. Adding the following maven option seems to fix it fine.… Read More »Maven build failing org.codehaus.plexus.archiver.AbstractArchiver$1 .hasNext(AbstractArchiver.java)
Installing Maven 3 on Ubuntu 13.04 is as straight forward as any other version on Ubuntu. Just hit apt-get and your work is done. $… Read More »How to install Maven 3 on Ubuntu 13.04
Ubuntu 13.04 comes shipped with Open Jdk 7. For couple of reasons you might want to use the Oracle Java 7. This post guides you… Read More »How to install Oracle java 7 on Ubuntu 13.04
This is a collection of few interesting java interview questions that interviews love to ask. Feel free to download and share the book. Download from… Read More »ConfusedCoders Java Interview preparation ebook
package com.test.dev; public class LongestSubSequencePalindrome { /** * @param args */ public static void main(String[] args) { String str = “tatestseatat”; // Any test String… Read More »Longest Subsequence palindrome java implementation