You must log in to access this page

Javapeople

Javapeople Know everything about java
Javapeople
Know everything about java
Get in the set of java interview questions with answers.javapeople has information ablout java,j2ee,hibernate,spring,DAO,Jsf,JDBC,servlet,jsp...
Just here for the view

Most recent posts

5/10 10:11 Improving code quality with Eclipse plugins (Check-Style and PMD))
One of my primary goals when developing software is either preventing a defect from being introduced into a code base or limiting its lifetime; in other words, I try to find defects as early as possible. Obviously, the more I learn about how to write...
7/23 13:18 Top 10 Things Need to Know About Java SE 6
Version 6 of the Java Platform, Standard Edition (Java SE), was released for general availability in December 2006. So here are the top 10 things you need to know about the release, if you're still hovering hesitantly overWeb Services...
6/07 17:07 The J2EE Architect's Handbook
This book is written for technical architects and senior developers tasked with designing and leading the development of J2EE java applications. This book will guide the architect through the entire process of delivering a project from analysis...
5/30 10:06 Coding Standards - Part IV
Error and Exception Handling Does the code avoid catching Exception (as opposed to more specific exception types)? Does the code avoid throwing an explicit Exception object? Does the code avoid having empty catch blocks? Do methods check for null /...
5/30 10:00 Coding Standards - Part II
Naming: (mostly covered by checkstyle) Are class, variable, and method names descriptive?Like Other than following naming convention, all names should be descriptiveCoding Standard Is the code self-descriptive and easily understood?Like Code should...