<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Java Archives - HackerHeap</title>
	<atom:link href="https://www.hackerheap.com/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.hackerheap.com</link>
	<description></description>
	<lastBuildDate>Sun, 14 Jun 2020 00:58:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9</generator>

<image>
	<url>https://www.hackerheap.com/wp-content/uploads/2019/11/cropped-HackerHeap_Transparent-32x32.png</url>
	<title>Java Archives - HackerHeap</title>
	<link>https://www.hackerheap.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">105925724</site>	<item>
		<title>Leetcode 4 Median of Two Sorted Arrays Java Solution</title>
		<link>https://www.hackerheap.com/leetcode-4-median-of-two-sorted-arrays-java-solution/</link>
		
		<dc:creator><![CDATA[rajendra]]></dc:creator>
		<pubDate>Sun, 14 Jun 2020 00:58:50 +0000</pubDate>
				<category><![CDATA[Data Structures & Algorithms]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Leetcode]]></category>
		<category><![CDATA[Amazon Interview Question]]></category>
		<category><![CDATA[Cracking The Coding Interview]]></category>
		<category><![CDATA[Interview Prep]]></category>
		<category><![CDATA[java solution]]></category>
		<category><![CDATA[leetcode solutions]]></category>
		<category><![CDATA[median of two sorted arrays java solution]]></category>
		<category><![CDATA[Programming]]></category>
		<guid isPermaLink="false">https://www.hackerheap.com/?p=321</guid>

					<description><![CDATA[<p>There are two sorted arrays&#160;nums1&#160;and&#160;nums2&#160;of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). You may assume&#160;nums1&#160;and&#160;nums2&#160;cannot be both empty. Example 1: nums1 = [1, 3] nums2 = [2] The median is 2.0 Example 2: nums1 = [1, 2] nums2 = [3,&#8230;&#8230; <a class="more-link" href="https://www.hackerheap.com/leetcode-4-median-of-two-sorted-arrays-java-solution/">Continue reading <span class="screen-reader-text">Leetcode 4 Median of Two Sorted Arrays Java Solution</span></a></p>
<p>The post <a rel="nofollow" href="https://www.hackerheap.com/leetcode-4-median-of-two-sorted-arrays-java-solution/">Leetcode 4 Median of Two Sorted Arrays Java Solution</a> appeared first on <a rel="nofollow" href="https://www.hackerheap.com">HackerHeap</a>.</p>
]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">321</post-id>	</item>
		<item>
		<title>HashMap In Java With Example</title>
		<link>https://www.hackerheap.com/hashmap-in-java-with-example/</link>
		
		<dc:creator><![CDATA[rajendra]]></dc:creator>
		<pubDate>Thu, 02 Apr 2020 03:44:39 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Basics]]></category>
		<category><![CDATA[HashMap]]></category>
		<category><![CDATA[HashMap In java]]></category>
		<category><![CDATA[Java Data Structures]]></category>
		<category><![CDATA[Java HashMap]]></category>
		<guid isPermaLink="false">https://www.hackerheap.com/?p=236</guid>

					<description><![CDATA[<p>Here we will learn about the Java HashMap class with an example along with the functions provided by the Java HashMap class which resides in the Java util package. The Java HashMap class implements the Map interface, which is used for storing key-value pairs. HashMap is represented as HashMap&#60;Key, Value&#62; or HashMap&#60;K, V&#62;, the key&#8230;&#8230; <a class="more-link" href="https://www.hackerheap.com/hashmap-in-java-with-example/">Continue reading <span class="screen-reader-text">HashMap In Java With Example</span></a></p>
<p>The post <a rel="nofollow" href="https://www.hackerheap.com/hashmap-in-java-with-example/">HashMap In Java With Example</a> appeared first on <a rel="nofollow" href="https://www.hackerheap.com">HackerHeap</a>.</p>
]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">236</post-id>	</item>
		<item>
		<title>Resilience4j Circuit Breaker With Spring boot</title>
		<link>https://www.hackerheap.com/resilience4j-circuit-breaker-with-spring-boot/</link>
		
		<dc:creator><![CDATA[rajendra]]></dc:creator>
		<pubDate>Fri, 27 Mar 2020 03:30:42 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[resilience4j]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[java circuit breaker]]></category>
		<category><![CDATA[resilience4j circuit breaker]]></category>
		<category><![CDATA[resilience4j with springboot2]]></category>
		<category><![CDATA[Springboot]]></category>
		<guid isPermaLink="false">https://www.hackerheap.com/?p=260</guid>

					<description><![CDATA[<p>What is a Circuit Breaker pattern? The circuit breaker pattern is something that can prevent from repeatedly trying to call a service or a function that will likely fail and save CPU cycles. It is pretty common for a software service to call remote software service and the remote service can fail or not respond&#8230;&#8230; <a class="more-link" href="https://www.hackerheap.com/resilience4j-circuit-breaker-with-spring-boot/">Continue reading <span class="screen-reader-text">Resilience4j Circuit Breaker With Spring boot</span></a></p>
<p>The post <a rel="nofollow" href="https://www.hackerheap.com/resilience4j-circuit-breaker-with-spring-boot/">Resilience4j Circuit Breaker With Spring boot</a> appeared first on <a rel="nofollow" href="https://www.hackerheap.com">HackerHeap</a>.</p>
]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">260</post-id>	</item>
		<item>
		<title>Arrays In Java With Example</title>
		<link>https://www.hackerheap.com/arrays-in-java-with-example/</link>
		
		<dc:creator><![CDATA[rajendra]]></dc:creator>
		<pubDate>Tue, 17 Mar 2020 03:36:26 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Basics]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[Array Tutorial]]></category>
		<category><![CDATA[Java Array]]></category>
		<category><![CDATA[Java Data Structures]]></category>
		<guid isPermaLink="false">https://www.hackerheap.com/?p=227</guid>

					<description><![CDATA[<p>The array is a data structure provided by Java which holds elements of the same data type with a fixed size.An array can hold elements/ values of the same data type, an example being we can create an array that can store 100 elements of type either int/String/char etc.. We can not have array hold&#8230;&#8230; <a class="more-link" href="https://www.hackerheap.com/arrays-in-java-with-example/">Continue reading <span class="screen-reader-text">Arrays In Java With Example</span></a></p>
<p>The post <a rel="nofollow" href="https://www.hackerheap.com/arrays-in-java-with-example/">Arrays In Java With Example</a> appeared first on <a rel="nofollow" href="https://www.hackerheap.com">HackerHeap</a>.</p>
]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">227</post-id>	</item>
		<item>
		<title>Java ArrayList With Example</title>
		<link>https://www.hackerheap.com/java-arraylist-with-example/</link>
		
		<dc:creator><![CDATA[rajendra]]></dc:creator>
		<pubDate>Wed, 11 Mar 2020 03:43:30 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[ArrayList]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[HackerHeap]]></category>
		<category><![CDATA[Java ArrayList]]></category>
		<category><![CDATA[Java Data Structures]]></category>
		<guid isPermaLink="false">https://www.hackerheap.com/?p=206</guid>

					<description><![CDATA[<p>ArrayList is a resizable implementation of List interface, ArrayList can also be called as a dynamic Array. Like Array, ArrayList stores similar data type elements which can increase its size dynamically.ArrayList cannot store primitive data types like int and char, it can only store non-primitive data types like Integer, String, etc..The index of the ArrayList&#8230;&#8230; <a class="more-link" href="https://www.hackerheap.com/java-arraylist-with-example/">Continue reading <span class="screen-reader-text">Java ArrayList With Example</span></a></p>
<p>The post <a rel="nofollow" href="https://www.hackerheap.com/java-arraylist-with-example/">Java ArrayList With Example</a> appeared first on <a rel="nofollow" href="https://www.hackerheap.com">HackerHeap</a>.</p>
]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">206</post-id>	</item>
		<item>
		<title>Netflix Eureka Server And Client Setup With Spring Boot</title>
		<link>https://www.hackerheap.com/netflix-eureka-server-and-client-setup-with-spring-boot/</link>
		
		<dc:creator><![CDATA[rajendra]]></dc:creator>
		<pubDate>Tue, 21 Jan 2020 03:56:10 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[Spring Cloud]]></category>
		<category><![CDATA[netflix discovery client]]></category>
		<category><![CDATA[netflix eureka]]></category>
		<category><![CDATA[spring cloud]]></category>
		<category><![CDATA[Springboot]]></category>
		<guid isPermaLink="false">https://www.hackerheap.com/?p=183</guid>

					<description><![CDATA[<p>Overview We will set up a Eureka server (service registry used to register multiple services/microservices).We will set up multiple Eureka clients(REST services that register to Eureka Server).We will do client-side load balancing and service discovery through Eureka. Setting up Eureka Server The dependency required to set up a eureka server is "spring-cloud-starter-netflix-eureka-client" along with spring-boot-starter-parent.&#8230;&#8230; <a class="more-link" href="https://www.hackerheap.com/netflix-eureka-server-and-client-setup-with-spring-boot/">Continue reading <span class="screen-reader-text">Netflix Eureka Server And Client Setup With Spring Boot</span></a></p>
<p>The post <a rel="nofollow" href="https://www.hackerheap.com/netflix-eureka-server-and-client-setup-with-spring-boot/">Netflix Eureka Server And Client Setup With Spring Boot</a> appeared first on <a rel="nofollow" href="https://www.hackerheap.com">HackerHeap</a>.</p>
]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">183</post-id>	</item>
		<item>
		<title>Java Datatypes</title>
		<link>https://www.hackerheap.com/java-datatypes/</link>
		
		<dc:creator><![CDATA[rajendra]]></dc:creator>
		<pubDate>Mon, 13 Jan 2020 06:22:54 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<guid isPermaLink="false">https://www.hackerheap.com/?p=177</guid>

					<description><![CDATA[<p>What is a Datatype?A data type is an attribute of data that tells the compiler or interpreter how the programmer intends to use the data. Data types in Java programming language There are two different sets of data types in Java Primitive DatatypesNon Primitive Datatypes The below image depicts different data types in java Java&#8230;&#8230; <a class="more-link" href="https://www.hackerheap.com/java-datatypes/">Continue reading <span class="screen-reader-text">Java Datatypes</span></a></p>
<p>The post <a rel="nofollow" href="https://www.hackerheap.com/java-datatypes/">Java Datatypes</a> appeared first on <a rel="nofollow" href="https://www.hackerheap.com">HackerHeap</a>.</p>
]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">177</post-id>	</item>
		<item>
		<title>Difference between JDK, JRE, and JVM</title>
		<link>https://www.hackerheap.com/difference-between-jdk-jre-and-jvm/</link>
		
		<dc:creator><![CDATA[rajendra]]></dc:creator>
		<pubDate>Sun, 22 Dec 2019 22:49:23 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JDK]]></category>
		<category><![CDATA[JRE]]></category>
		<category><![CDATA[JVM]]></category>
		<guid isPermaLink="false">https://www.hackerheap.com/?p=156</guid>

					<description><![CDATA[<p>In this post, we will see the major differences between JDK, JRE, and JVM. JDK (Java Development Kit): JDK is the one you need to build applications in Java, it contains everything that is required to build and run Java applications. When you download java from the oracle site to develop applications you actually download&#8230;&#8230; <a class="more-link" href="https://www.hackerheap.com/difference-between-jdk-jre-and-jvm/">Continue reading <span class="screen-reader-text">Difference between JDK, JRE, and JVM</span></a></p>
<p>The post <a rel="nofollow" href="https://www.hackerheap.com/difference-between-jdk-jre-and-jvm/">Difference between JDK, JRE, and JVM</a> appeared first on <a rel="nofollow" href="https://www.hackerheap.com">HackerHeap</a>.</p>
]]></description>
		
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">156</post-id>	</item>
	</channel>
</rss>
