- Friday, January 15, 2010, 20:08
- Struts 2, Tutorial
- 3,420 views
This is a demo Contact Manager application that we will create using Struts2 and Hibernate framework. In this article we will see how we can use Hibernate to perform Insert / Delete operations in Struts2 framework.
Our Goal
Our goal will be to demonstrate the use of Struts2 with Hibernate framework and to create a demo application "Contact Manager". The basic requirement of the Contact Manager app ...
Full story
- Saturday, October 10, 2009, 18:47
- Featured, Java, Tutorial
- 6,692 views
Inner classes, also called Nested Classes, are nothing but classes that are defined within other classes. The nesting is a relationship between classes, not objects.
Inner classes have clearly two benefits, name control & access control. In Java, this benefit is not as important because Java packages give the name control.
Java inner classes have feature that ...
Full story
- Wednesday, August 26, 2009, 13:08
- PHP
- 1,178 views
$_SERVER array in PHP is very useful in getting lot of information about the PHP script in execution as well as the server/request details. $_SERVER is an array containing information such as headers, paths, and script locations. The entries in this array are created by the web server.
Following are few very useful attributes of ...
Full story
- Tuesday, August 18, 2009, 20:26
- J2EE
- 831 views
Following is the basic overview of Apache Archiva, The Build Artifact Repository Manager.
What is Archiva?
Apache Archiva is an extensible repository management software that helps taking care of your own personal or enterprise-wide build artifact repository. It is the perfect companion for build tools such as
Maven, Continuum, and ANT.
Features of Archiva
Remote repository proxying
Security access ...
Full story
- Monday, August 10, 2009, 14:24
- Featured, Tutorial, Web 2.0
- 3,775 views
Twitter, The popular micro blogging and real time update site has changed the way we interact in internet world. Not only it has became a source of latest updates/news going in world, but also an addiction to lot of those who tweets regularly.
Twitter has provided lots of API that can be used to Get the latest ...
Full story
- Thursday, July 16, 2009, 15:58
- Featured, JavaScript
- 5,311 views
Object-Oriented programming is one of the widely used programming paradigm that uses abstraction to create model based on real world. It is a model organized around "objects" rather than "actions" and data rather than logic. Historically, a program has been viewed as a logical procedure that takes input data, processes it, and produces output data. Object-oriented ...
Full story
- Wednesday, June 24, 2009, 14:37
- Java, PHP, Tutorial, Web 2.0
- 10,158 views
REST is a term coined by
Roy Fielding in his Ph.D. dissertation to describe an architecture style of networked systems. REST is an acronym standing for Representational State Transfer. Representational State Transfer(REST), a software architecture style used in developing stateless web services. While this style may be used to describe any distributed framework that uses ...
Full story
- Thursday, May 7, 2009, 15:34
- Featured, PHP
- 20,311 views
Following are list of 15 most useful PHP code snippets that a PHP developer will need at any point in his career. Few of the snippets are shared from my projects and few are taken from useful php websites from internet. You may also want to comment on any of the code or also you can ...
Full story
- Thursday, April 9, 2009, 17:09
- JQuery
- 4,104 views
Handling events in today web browser is a bit difficult part as different browser handles events in a different way. Hence to overcome these cross browser problems, one can leverage the Event handling APIs of jQuery.
jQuery is a small JavaScript library that provides a vast number of APIs to handle different browser events and effects ...
Full story
- Friday, February 27, 2009, 20:02
- JSF, Tutorial
- 13,332 views
In continuation with my previous article on
Creating JavaServer Faces JSF application in Eclipse, I am posting next article in the series. This time we will cover details about JSF Validation Model and Handling Errors in JSF.
JavaServer Faces technology supports a mechanism for validating the data of editable components. Each component in JavaServer Faces, created ...
Full story