<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Java Bulgaria</title>
	<link>http://javabg.eu</link>
	<description>Всичко за Java</description>
	<lastBuildDate>Thu, 20 May 2010 20:27:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>Java tutorial/code &#8211; How Spring Flexibility distinguishes it from other J2ee  frameworks</title>
		<description><![CDATA[Sometimes it is not possible to completely switch to a different framework. Spring does not force to use everything. Existing front-ends built using Web Work, Struts or other UI frameworks can be integrated perfectly well with a Spring-based middle-tier, allowing you to use the transaction features that Spring offers. The only things you need to [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-aspect-oriented-programming-in-spring-and-its-benefits-compared-to-other-j2ee-technologies/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is Aspect-oriented programming in Spring and its benefits compared to other J2EE technologies'>Java tutorial/code &#8211; What is Aspect-oriented programming in Spring and its benefits compared to other J2EE technologies</a> <small>AOP is a programming technique adopted in spring framework to...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-inversion-of-control-concept-of-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is Inversion of control concept of Spring Framework'>Java tutorial/code &#8211; What is Inversion of control concept of Spring Framework</a> <small>The basic concept of the Inversion of Control pattern (dependency...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-ioc-container-in-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is IOC container in Spring Framework'>Java tutorial/code &#8211; What is IOC container in Spring Framework</a> <small>The bean factory concept is foundation of Spring as an...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-how-spring-flexibility-distinguishes-it-from-other-j2ee-frameworks/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; How to choose between BeanFactory and ApplicationContext Interface in IOC container</title>
		<description><![CDATA[The org.springframework.beans and org.springframework.context packages provide the basis for the Spring Framework&#8217;s IoC container. The ApplicationContext interface is superset of BeanFactory implementations like and adds other functionality such as easier integration with Spring&#8217;s AOP features, event propagation, and application-layer specific contexts such as the WebApplicationContext for use in web applications. So ApplicationContext is more preferred [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-why-web-services-are-needed-in-industry/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; Why Web Services are needed in Industry'>Java tutorial/code &#8211; Why Web Services are needed in Industry</a> <small>Basically Web services mitigate the application integration crisis. It helps...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-ioc-container-in-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is IOC container in Spring Framework'>Java tutorial/code &#8211; What is IOC container in Spring Framework</a> <small>The bean factory concept is foundation of Spring as an...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-how-to-split-container-definitions-in-multiple-xml-files/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; How to split  container definitions in multiple XML files'>Java tutorial/code &#8211; How to split  container definitions in multiple XML files</a> <small>Container definition can be spit to the multiple XML files...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-how-to-choose-between-beanfactory-and-applicationcontext-interface-in-ioc-container/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; How to define a bean which is created using a static factory method</title>
		<description><![CDATA[Following piece of code creates a bean with static method makeInstance of sampleBean2 class. Related posts:Java tutorial/code &#8211; How to make beans aliases Aliases are used in many situations for example if a... Java tutorial/code &#8211; What is IOC container in Spring Framework The bean factory concept is foundation of Spring as an... Java tutorial/code [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-how-to-make-beans-aliases/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; How to make beans  aliases'>Java tutorial/code &#8211; How to make beans  aliases</a> <small>Aliases are used in many situations for example if a...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-ioc-container-in-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is IOC container in Spring Framework'>Java tutorial/code &#8211; What is IOC container in Spring Framework</a> <small>The bean factory concept is foundation of Spring as an...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-how-to-split-container-definitions-in-multiple-xml-files/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; How to split  container definitions in multiple XML files'>Java tutorial/code &#8211; How to split  container definitions in multiple XML files</a> <small>Container definition can be spit to the multiple XML files...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-how-to-define-a-bean-which-is-created-using-a-static-factory-method/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; How to make beans  aliases</title>
		<description><![CDATA[Aliases are used in many situations for example if a component defines a resource by some name and another component want to use that resource by different name suiting to naming of that component aliasing is useful . See following piece of code to make alias of a bean. Here CAdataSource aliased to CBdataSource and [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-how-to-split-container-definitions-in-multiple-xml-files/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; How to split  container definitions in multiple XML files'>Java tutorial/code &#8211; How to split  container definitions in multiple XML files</a> <small>Container definition can be spit to the multiple XML files...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-how-to-define-a-bean-which-is-created-using-a-static-factory-method/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; How to define a bean which is created using a static factory method'>Java tutorial/code &#8211; How to define a bean which is created using a static factory method</a> <small>Following piece of code creates a bean with static method...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-ioc-container-in-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is IOC container in Spring Framework'>Java tutorial/code &#8211; What is IOC container in Spring Framework</a> <small>The bean factory concept is foundation of Spring as an...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-how-to-make-beans-aliases/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; How to split  container definitions in multiple XML files</title>
		<description><![CDATA[Container definition can be spit to the multiple XML files and combined through Import keyword. Related posts:Java tutorial/code &#8211; What is IOC container in Spring Framework The bean factory concept is foundation of Spring as an... Java tutorial/code &#8211; What is Inversion of control concept of Spring Framework The basic concept of the Inversion of [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-ioc-container-in-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is IOC container in Spring Framework'>Java tutorial/code &#8211; What is IOC container in Spring Framework</a> <small>The bean factory concept is foundation of Spring as an...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-inversion-of-control-concept-of-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is Inversion of control concept of Spring Framework'>Java tutorial/code &#8211; What is Inversion of control concept of Spring Framework</a> <small>The basic concept of the Inversion of Control pattern (dependency...</small></li>
<li><a href='http://javabg.eu/2010/02/how-to-decompress-files-from-a-zip-file/' rel='bookmark' title='Permanent Link: How to decompress files from a ZIP file'>How to decompress files from a ZIP file</a> <small>In previous article, you learn about how to compress files...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-how-to-split-container-definitions-in-multiple-xml-files/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; What is Aspect-oriented programming in Spring and its benefits compared to other J2EE technologies</title>
		<description><![CDATA[AOP is a programming technique adopted in spring framework to allow programmer to modularize crosscutting issues like logging and transaction management. In a typical oops development approach programmer usually implements logging functionality by putting logger statements in all your methods of Java classes. In an AOP approach one can instead modularize the logging services and [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-are-different-web-services-technologies-and-tools/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What are Different Web Services Technologies and Tools'>Java tutorial/code &#8211; What are Different Web Services Technologies and Tools</a> <small>There are a variety of tools available for the Web...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-inversion-of-control-concept-of-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is Inversion of control concept of Spring Framework'>Java tutorial/code &#8211; What is Inversion of control concept of Spring Framework</a> <small>The basic concept of the Inversion of Control pattern (dependency...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-uddi-protocol/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is UDDI Protocol'>Java tutorial/code &#8211; What is UDDI Protocol</a> <small>In simple words this is a way for describing available...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-what-is-aspect-oriented-programming-in-spring-and-its-benefits-compared-to-other-j2ee-technologies/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; What is Inversion of control concept of Spring Framework</title>
		<description><![CDATA[The basic concept of the Inversion of Control pattern (dependency injection) is that programmers don’t need to create your objects but describe how they should be created. Don’t directly connect your components and services together in code but describe which services are needed by which components in a configuration file. A container (in the case [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-ioc-container-in-spring-framework/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is IOC container in Spring Framework'>Java tutorial/code &#8211; What is IOC container in Spring Framework</a> <small>The bean factory concept is foundation of Spring as an...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-aspect-oriented-programming-in-spring-and-its-benefits-compared-to-other-j2ee-technologies/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is Aspect-oriented programming in Spring and its benefits compared to other J2EE technologies'>Java tutorial/code &#8211; What is Aspect-oriented programming in Spring and its benefits compared to other J2EE technologies</a> <small>AOP is a programming technique adopted in spring framework to...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-how-to-choose-between-beanfactory-and-applicationcontext-interface-in-ioc-container/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; How to choose between BeanFactory and ApplicationContext Interface in IOC container'>Java tutorial/code &#8211; How to choose between BeanFactory and ApplicationContext Interface in IOC container</a> <small>The org.springframework.beans and org.springframework.context packages provide the basis for the...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-what-is-inversion-of-control-concept-of-spring-framework/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; What is IOC container in Spring Framework</title>
		<description><![CDATA[The bean factory concept is foundation of Spring as an IOC container. IOC takes the responsibility for making things happen into the framework away from application code. Programmer needs to just configure which dependencies should be set. BeanFactory interface, an implementation of the Factory design pattern enables objects to be created and retrieved by name. [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-are-different-web-services-technologies-and-tools/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What are Different Web Services Technologies and Tools'>Java tutorial/code &#8211; What are Different Web Services Technologies and Tools</a> <small>There are a variety of tools available for the Web...</small></li>
<li><a href='http://javabg.eu/2010/02/how-to-speed-up-ejb-lookups/' rel='bookmark' title='Permanent Link: How to speed up EJB lookups'>How to speed up EJB lookups</a> <small>J2EE applications usually invoke the same EJBs several times. EJB...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-a-web-service/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is a Web Service'>Java tutorial/code &#8211; What is a Web Service</a> <small>Web Service is an application that provides web API to...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-what-is-ioc-container-in-spring-framework/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; What are Different Web Services Technologies and Tools</title>
		<description><![CDATA[There are a variety of tools available for the Web Services. 1. Microsoft Has C# as the development language for Web services and .NET framework. 2. Sun Microsystems has JAX/RPC (Java API for XML Remote Procedure Calls) and JAXR (Java API for XML Registries). 3. IBM also has Web Services Toolkit (WSTK), WSDL Toolkit, and [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-why-web-services-are-needed-in-industry/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; Why Web Services are needed in Industry'>Java tutorial/code &#8211; Why Web Services are needed in Industry</a> <small>Basically Web services mitigate the application integration crisis. It helps...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-simple-object-access-protocol/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is Simple Object Access Protocol'>Java tutorial/code &#8211; What is Simple Object Access Protocol</a> <small>This protocol is used to initiate communication to UDDI service....</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-uddi-protocol/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is UDDI Protocol'>Java tutorial/code &#8211; What is UDDI Protocol</a> <small>In simple words this is a way for describing available...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-what-are-different-web-services-technologies-and-tools/</link>
			</item>
	<item>
		<title>Java tutorial/code &#8211; What is a Web Service</title>
		<description><![CDATA[Web Service is an application that provides web API to communicate using XML and the Web. Web services makes distributed computer architecture made up of many different machines on different platform trying to communicate over the network to form one system. A set of standards are used that allow developers to implement distributed applications. Related [...]


Related posts:<ol><li><a href='http://javabg.eu/2010/05/java-tutorialcode-why-web-services-are-needed-in-industry/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; Why Web Services are needed in Industry'>Java tutorial/code &#8211; Why Web Services are needed in Industry</a> <small>Basically Web services mitigate the application integration crisis. It helps...</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-what-is-simple-object-access-protocol/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; What is Simple Object Access Protocol'>Java tutorial/code &#8211; What is Simple Object Access Protocol</a> <small>This protocol is used to initiate communication to UDDI service....</small></li>
<li><a href='http://javabg.eu/2010/05/java-tutorialcode-how-to-choose-between-beanfactory-and-applicationcontext-interface-in-ioc-container/' rel='bookmark' title='Permanent Link: Java tutorial/code &#8211; How to choose between BeanFactory and ApplicationContext Interface in IOC container'>Java tutorial/code &#8211; How to choose between BeanFactory and ApplicationContext Interface in IOC container</a> <small>The org.springframework.beans and org.springframework.context packages provide the basis for the...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<link>http://javabg.eu/2010/05/java-tutorialcode-what-is-a-web-service/</link>
			</item>
</channel>
</rss>
