<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>India JAVA &#124; Java Development Softwares &#124; Java Programming &#124; Java Tutorials &#187; Java Development Category </title>
	<atom:link href="http://www.indiajava.org/category/java-development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.indiajava.org</link>
	<description>India JAVA &#124; Java Development Softwares &#124; Java Programming &#124; Java Tutorials</description>
	<lastBuildDate>Thu, 17 Dec 2009 15:32:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Introduction to Java</title>
		<link>http://www.indiajava.org/2009/07/11/7865/introduction-to-java/index.html</link>
		<comments>http://www.indiajava.org/2009/07/11/7865/introduction-to-java/index.html#comments</comments>
		<pubDate>Sat, 11 Jul 2009 14:01:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[indiajava]]></category>

		<guid isPermaLink="false">http://www.indiajava.org/?p=5</guid>
		<description><![CDATA[




 Java is an object oriented and structured programming language, designed by Sun Microsystems in the year 1991. Java is a third generation programming language. It has an in built application interface which has the ability to handle the graphics and user interfaces that creates the applets or applications.
The very advantage of java is its [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>Java is an object oriented and structured programming language, designed by Sun Microsystems in the year 1991. Java is a third generation programming language. It has an in built application interface which has the ability to handle the graphics and user interfaces that creates the applets or applications.</p>
<p>The very advantage of java is its &#8220;portability&#8221;, the programmer can write the program and compile in the same kind of environment as it is written and after that it can be run anywhere.</p>
<p>Java relates to both C and C++, it uses the syntax of C and the object oriented concepts from c++ and this makes Java appealing. When a source code is given as the input, the output from java compiler is the &#8220;bytecode&#8221;. Bytecode contains set of instructions which will be executed by Java Virtual machine (JVM). In a more simple way, I can say JVM interprets the bytecode and this is the reason that java can be run anywhere. Applets are the programs which are embedded in to web page and can be executed where as the applications are directly executed by JVM.</p>
<p>It is not always possible to compile the complete program at the same time, so java uses just-in-time compiler to compile a set of bytecodes in real time for execution and the remaining codes will just be interpreted and thus makes the execution of Java program faster. The two main building blocks of java programming are the classes and objects. Objects are the instance of class and class is a template for creating objects.</p>
<p>Unlike in c/c++ you need not manually allocate/de allocate dynamic memory, java itself does this and also it has garbage collection for the unused objects. Java program handles the run time errors too. Java supports multithreaded programming.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajava.org/2009/07/11/7865/introduction-to-java/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Validation With Dynamic Proxies</title>
		<link>http://www.indiajava.org/2007/07/18/7864/java-validation-with-dynamic-proxies/index.html</link>
		<comments>http://www.indiajava.org/2007/07/18/7864/java-validation-with-dynamic-proxies/index.html#comments</comments>
		<pubDate>Thu, 19 Jul 2007 06:25:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[indiajava]]></category>

		<guid isPermaLink="false">http://www.indiajava.org/?p=4</guid>
		<description><![CDATA[




 Decouple validation processes from your business object implementations
Version 1.3 of the Java platform saw the introduction of the dynamic proxy facility. Dynamic proxies offer many interesting solutions to Java developers, including a validation scheme that easily decouples validation logic from an application&#8217;s core business logic. In this article, Java developer Eric Olson shows you [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>Decouple validation processes from your business object implementations</p>
<p>Version 1.3 of the Java platform saw the introduction of the dynamic proxy facility. Dynamic proxies offer many interesting solutions to Java developers, including a validation scheme that easily decouples validation logic from an application&#8217;s core business logic. In this article, Java developer Eric Olson shows you how dynamic proxies can keep your core application code free of validation routines and focused solely on business logic.</p>
<p>Validation is an essential aspect of many enterprise applications. Most business methods contain validation logic to ensure that pre-conditions are met before carrying out business logic. Code that deals with values entered through a user interface employs validation logic to ensure that the values entered by a user are valid before carrying out actions that may affect other areas of the application or other users. Validation is an especially important component of applications that employ and interact with other loosely coupled components, as well as services that may not be strict in their assertions.</p>
<p>As important as it is to the safety and functionality of your business applications, core application logic is often cluttered with validation routines. Validation processes are often scattered throughout method calls, making it difficult to tell the difference between validation logic and core business logic. In most cases, business objects and methods must know some details of the validation process and deal with them directly in their implementation &#8212; for example, a business object may throw a validation exception directly from the business method (either coded directly in the method, or as a result of calling some validation service). The validation exception in this case is really a byproduct of the validation process, however, and would ideally be hidden from the business object implementation.</p>
<p>In this article, I&#8217;ll show you a more decoupled and centralized approach to validation, using the dynamic proxy facility introduced to the Java platform with version 1.3. Working with a single example throughout the article, I&#8217;ll demonstrate the weaknesses of both tightly coupled and loosely coupled validation schemes, and then show you how dynamic</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajava.org/2007/07/18/7864/java-validation-with-dynamic-proxies/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Programming Language : What it is ?</title>
		<link>http://www.indiajava.org/2007/01/13/7862/java-programming-language-what-it-is/index.html</link>
		<comments>http://www.indiajava.org/2007/01/13/7862/java-programming-language-what-it-is/index.html#comments</comments>
		<pubDate>Sat, 13 Jan 2007 13:32:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java Development]]></category>
		<category><![CDATA[Java Programming]]></category>
		<category><![CDATA[indiajava]]></category>

		<guid isPermaLink="false">http://www.indiajava.org/?p=2</guid>
		<description><![CDATA[




 What is java? For the sake of record here is a small introduction.
A high-level programming language developed by Sun Microsystems. Java was originally called OAK, and was designed for handheld devices and set-top boxes. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of [...]]]></description>
			<content:encoded><![CDATA[<div style="padding: 5px; float: right;">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-4630710538321097";
/* Post Ads */
google_ad_slot = "0443546771";
google_ad_width = 250;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div> <p>What is java? For the sake of record here is a small introduction.</p>
<p>A high-level programming language developed by Sun Microsystems. Java was originally called OAK, and was designed for handheld devices and set-top boxes. Oak was unsuccessful so in 1995 Sun changed the name to Java and modified the language to take advantage of the burgeoning World Wide Web.</p>
<p>Java is an object-oriented language similar to C++, but simplified to eliminate language features that cause common programming errors. Java source code files (files with a .java extension) are compiled into a format called bytecode (files with a .class extension), which can then be executed by a Java interpreter. Compiled Java code can run on most computers because Java interpreters and runtime environments, known as Java Virtual Machines (VMs), exist for most operating systems, including UNIX, the Macintosh OS, and Windows. Bytecode can also be converted directly into machine language instructions by a just-in-time compiler (JIT).</p>
<p>Java is a general purpose programming language with a number of features that make the language well suited for use on the World Wide Web. Small Java applications are called Java applets and can be downloaded from a Web server and run on your computer by a Java-compatible Web browser, such as Netscape Navigator or Microsoft Internet Explorer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.indiajava.org/2007/01/13/7862/java-programming-language-what-it-is/index.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
