The Spring Framework consist of features organized into about 20 modules. These modules are grouped into Core Container, Data Access/Inte...
Sunday, 22 September 2013
Spring - Introduction
9/22/2013 12:03:00 am
In this tutorial we are going to see brief introduction about Spring Framework.This tutorials created by referring spring framework 3.2.4...
Saturday, 14 September 2013
Java Best Practice – Programming Practices
9/14/2013 07:18:00 pm
Providing Access to Instance and Class Variables Don’t make any instance or class variable public without good reason. Often, instance ...
Java Best Practice – Naming Conventions
9/14/2013 07:17:00 pm
Naming conventions make programs more understandable by making them easier to read. They can also give information about the function of ...
Java Best Practice - Comments
9/14/2013 07:16:00 pm
Java programs can have two kinds of comments: implementation comments and documentation comments. Implementation comments are those found...
Java Best Practice - Statements
9/14/2013 07:15:00 pm
Simple Statements Each line should contains one statement.Example arg1++; //CORRECT arg2++; //...
Java Best Practice – White Spaces
9/14/2013 07:12:00 pm
Blank Lines Blank lines improved readability by setting off sections of code that are locally related. Two blank lines should always be used...
Java Best Practice - Declarations
9/14/2013 07:10:00 pm
Number Per Line int level; // indentation level int size; // size of table is prepared over int level, size; Do not put different type on t...
Java Best Practice - Indentation
9/14/2013 07:08:00 pm
Four space should be used as the unit of indentation.The exact construction of the indentation(space vs tab) is unspecified.Tabs must be set...
Java Best Practice - File Organization
9/14/2013 07:07:00 pm
The Java file consist of section that should be separated by blank lines and optional comments identifying each sections. Java Source file l...
Java Best Practice – Code Conventions
9/14/2013 07:06:00 pm
Introduction Why Code Conversion Required Code conversions are important for programmers because 80% of the lifetime cost of ...
Sunday, 8 September 2013
Email Receiver with Attachment
9/08/2013 06:35:00 am
In this tutorials we are going to see how to receive the email with attachment using java program.I used gmail SMTP server for receive email...
Email Receiver using Java Mail API
9/08/2013 05:58:00 am
In this tutorials we are going to see how to receive the email using java program.I used gmail SMTP server for receive email, you can use an...
Sending Email with Attachment
9/08/2013 01:33:00 am
In this tutorials we are going to see how to send the email with attachment using java program.I used gmail SMTP server for sending email, y...
Sending HTML Email using Java Mail API
9/08/2013 12:45:00 am
In this tutorials we are going to see how to send the HTML email message using Java program.I used gmail SMTP server for sending email, you ...
Sending Simple Email Using Java Mail API
9/08/2013 12:15:00 am
In this tutorials we are going to see how to send the simple email using java program.I used gmail SMTP server for sending email, you can us...
Saturday, 7 September 2013
Java Mail API - Introduction
9/07/2013 06:17:00 pm
In this tutorials we are going to see introduction about Java Mail API.The Java Mail API used to send email programmatically.Java Mail AP...
Friday, 6 September 2013
Log4j – JDBCAppender using XML configuration
9/06/2013 08:33:00 pm
In this tutorials we are going to see how to create simple log4j application with JDBCAppender using xml configuration. JDBCAppender The JDB...
Log4j – HTML Layout
9/06/2013 08:14:00 pm
In this tutorial we are going to see how to generate HTML formatted file using log4j, org.apache.log4j.HTMLLayout is used to generate HTML f...
Tuesday, 3 September 2013
Log4j – PatternLayout
9/03/2013 06:04:00 pm
Log4j PatternLayout is used to customize your log message format.The class org.apache.log4j.PatternLayout is used for set your layout ...
Sunday, 1 September 2013
Log4j – JDBCAppender using property configuration
9/01/2013 06:46:00 am
In this tutorials we are going to see how to create simple log4j application with JDBCAppender using property configuration. JDBCAppende...
Subscribe to:
Posts (Atom)