10 new features which I liked the most in Eclipse Helios (3.6)
Last week Eclipse foundation delivered their 2010 installment i.e., the 3.6 version of Eclipse code named Helios. It was the largest release from Eclipse community so far as it involved 39 different project teams & 33 million lines of code (as per the data available in the official Eclipse web page). Helios comes with lots [...]
From ‘*’ to just Java, Virtualization & Cloud Computing
Almost from last one year, I had not been able to post my thoughts on technology consistently at TechSagar. Since, I got bit busy with few other personal projects, I was not able to dedicate much time for blogging. Even when I had some free time, I spent most of it by watching some classic [...]
Five minutes guide for creating your first Java web service using Axis2
This tutorial is intended for Java developers who are looking forward for developing their first SOAP based web service application. Theoretical knowledge of Web Services (including SOAP & WSDL) , practical knowledge of Eclipse IDE & ANT is a prerequisite for understanding this tutorial.
Five minutes guide for creating your first Struts2 project using Maven2
Struts2 is one of the most popular Java web application frameworks for building modern web 2.0 applications. In spite of facing stiff competitions from other sophisticated web frameworks like Ruby on Rails, Struts2 has been successful in retaining the top position mostly because of the Java factor associated with it.
Switch on Strings in Java
JDK 5.0 and its implementation of enum has eased the process of switching on strings in Java. Following code snippet shows how this functionality can be achieved.. public class prasTest { public enum test { first, second, third, novalue; public static test toValidStr(String str) { try { return valueOf(str); } catch (Exception e) { return [...]
Finding the hard disk space information using Java SE 6
Until Java SE 6 (Mustang) there was no direct Java way to get the hard disk volume information’s like the total disk space & available free space. The only possible way was the use of JNI which could have made our code platform dependent. The JSE 6 makes this task simple by providing few additional [...]
JBOSS Cache for J2EE developers
What is JBOSS Cache ? JBoss Cache is a replicated and transactional cache that can be used to manage Java objects within a local process or across distributed processes. Need For JBoss Cache With today’s large-scale enterprise applications, where scalability and high performance are required in-memory caching has a lead role to play. An in-memory [...]



