<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>JAVA on Vanslog</title>
    <link>https://vanslog.io/tags/java/</link>
    <description>Recent content in JAVA on Vanslog</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Thu, 21 Sep 2023 22:27:53 +0900</lastBuildDate>
    <atom:link href="https://vanslog.io/tags/java/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Java 21 Pattern Matching Usecase With Scala</title>
      <link>https://vanslog.io/posts/language/java/java-21-pattern-matching-usecase-with-scala/</link>
      <pubDate>Thu, 21 Sep 2023 22:27:53 +0900</pubDate>
      <guid>https://vanslog.io/posts/language/java/java-21-pattern-matching-usecase-with-scala/</guid>
      <description>The highly developed Java is indistinguishable from Scala.</description>
    </item>
    <item>
      <title>Build Integration Test Environment</title>
      <link>https://vanslog.io/posts/project/spring-data-meilisearch/build-integration-test-environment/</link>
      <pubDate>Wed, 30 Aug 2023 14:03:48 +0900</pubDate>
      <guid>https://vanslog.io/posts/project/spring-data-meilisearch/build-integration-test-environment/</guid>
      <description>Building an integrated test environment with Testcontainers and the JUnit 5 extension model</description>
    </item>
    <item>
      <title>Support Configuration With Annotation</title>
      <link>https://vanslog.io/posts/project/spring-data-meilisearch/support-configuration-with-annotation/</link>
      <pubDate>Fri, 11 Aug 2023 00:06:13 +0900</pubDate>
      <guid>https://vanslog.io/posts/project/spring-data-meilisearch/support-configuration-with-annotation/</guid>
      <description>How to support annotation based configuration in spring library</description>
    </item>
    <item>
      <title>Support Configuration With Namespace</title>
      <link>https://vanslog.io/posts/project/spring-data-meilisearch/support-configuration-with-namespace/</link>
      <pubDate>Wed, 26 Jul 2023 14:16:08 +0900</pubDate>
      <guid>https://vanslog.io/posts/project/spring-data-meilisearch/support-configuration-with-namespace/</guid>
      <description>How to support namespace-based configuration in a Spring library</description>
    </item>
    <item>
      <title>Testcontainers Meilisearch</title>
      <link>https://vanslog.io/posts/project/testcontainers-meilisearch/</link>
      <pubDate>Fri, 21 Jul 2023 22:47:52 +0900</pubDate>
      <guid>https://vanslog.io/posts/project/testcontainers-meilisearch/</guid>
      <description>We introduce Testcontainers Meilisearch and share what we felt while developing it.</description>
    </item>
    <item>
      <title>Introduction</title>
      <link>https://vanslog.io/posts/project/spring-data-meilisearch/introduction/</link>
      <pubDate>Wed, 28 Jun 2023 13:48:31 +0900</pubDate>
      <guid>https://vanslog.io/posts/project/spring-data-meilisearch/introduction/</guid>
      <description>Introducing the reasons and goals for starting the Spring Data Meilisearch project.</description>
    </item>
    <item>
      <title>Why Use Deque Instead Of Stack</title>
      <link>https://vanslog.io/posts/language/java/why-use-deque-instead-of-stack/</link>
      <pubDate>Fri, 05 May 2023 22:30:19 +0900</pubDate>
      <guid>https://vanslog.io/posts/language/java/why-use-deque-instead-of-stack/</guid>
      <description>&lt;h2 id=&#34;use-deque-instead-of-stack&#34;&gt;Use Deque instead of Stack?&lt;/h2&gt;
&lt;p&gt;When solving algorithm problems using Java, I used to use &lt;code&gt;Deque&lt;/code&gt; instead of &lt;code&gt;Stack&lt;/code&gt;.
While searching online, I often came across posts that suggested using &lt;code&gt;Deque&lt;/code&gt; instead of &lt;code&gt;Stack&lt;/code&gt; class.&lt;/p&gt;
&lt;p&gt;However, I think I was using it vaguely without thinking deeply about why I should use &lt;code&gt;Deque&lt;/code&gt;.
We took this opportunity to learn more about the differences between &lt;code&gt;Stack&lt;/code&gt; and &lt;code&gt;Deque&lt;/code&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A more complete and consistent set of LIFO stack operations is provided by the Deque interface and its implementations, which should be used in preference to this class. For example:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Why Spring</title>
      <link>https://vanslog.io/posts/web/spring/why-spring/</link>
      <pubDate>Thu, 21 Jul 2022 22:47:38 +0900</pubDate>
      <guid>https://vanslog.io/posts/web/spring/why-spring/</guid>
      <description>&lt;p&gt;Spring is the &lt;code&gt;Application Framework&lt;/code&gt; for enterprise environments and is the standard for Java-based web application development today. To fully understand Spring, you need to know its &lt;code&gt;background of appearance&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;This is because Spring is the result of solving the problems of &lt;code&gt;J2EE(Java 2 Platform, Enterprise Edition)&lt;/code&gt; for enterprise application development. Understanding the background of spring&amp;rsquo;s features and advantages will enhance your understanding of spring.&lt;/p&gt;
&lt;h2 id=&#34;j2ee&#34;&gt;J2EE&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;J2EE(Java 2 Platform, Enterprise Edition)&lt;/code&gt; is a set of specifications for enterprise application development. It was created by extending &lt;code&gt;J2SE(Java 2 Platform, Standard Edition)&lt;/code&gt;, a commonly used Java language.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Refactoring Loops To Collection Pipelines</title>
      <link>https://vanslog.io/posts/language/java/refactoring-loops-to-collection-pipelines/</link>
      <pubDate>Mon, 19 Jul 2021 13:03:57 +0000</pubDate>
      <guid>https://vanslog.io/posts/language/java/refactoring-loops-to-collection-pipelines/</guid>
      <description>When is it best to use streams introduced in Java 8?</description>
    </item>
    <item>
      <title>Primitive Type And Reference Type</title>
      <link>https://vanslog.io/posts/language/java/primitive-type-and-reference-type/</link>
      <pubDate>Fri, 16 Jul 2021 14:06:26 +0000</pubDate>
      <guid>https://vanslog.io/posts/language/java/primitive-type-and-reference-type/</guid>
      <description>Let’s learn about Java’s basic data types and reference data types!</description>
    </item>
    <item>
      <title>Sequence Diagram</title>
      <link>https://vanslog.io/posts/cs/uml/sequence-diagram/</link>
      <pubDate>Sat, 23 Jan 2021 16:10:03 +0900</pubDate>
      <guid>https://vanslog.io/posts/cs/uml/sequence-diagram/</guid>
      <description>Diagram representing the interaction of objects</description>
    </item>
    <item>
      <title>Collaboration Diagram</title>
      <link>https://vanslog.io/posts/cs/uml/collaboration-diagram/</link>
      <pubDate>Sat, 16 Jan 2021 18:48:45 +0900</pubDate>
      <guid>https://vanslog.io/posts/cs/uml/collaboration-diagram/</guid>
      <description>A tool to express design patterns in UML2.0</description>
    </item>
    <item>
      <title>What Is The Design Patterns</title>
      <link>https://vanslog.io/posts/cs/design-patterns/what-is-the-design-patterns/</link>
      <pubDate>Sat, 16 Jan 2021 10:52:57 +0900</pubDate>
      <guid>https://vanslog.io/posts/cs/design-patterns/what-is-the-design-patterns/</guid>
      <description>Design patterns for good object-oriented design</description>
    </item>
    <item>
      <title>Solid Principle</title>
      <link>https://vanslog.io/posts/cs/oop/solid-principle/</link>
      <pubDate>Sun, 10 Jan 2021 19:53:10 +0900</pubDate>
      <guid>https://vanslog.io/posts/cs/oop/solid-principle/</guid>
      <description>Object-oriented design principles</description>
    </item>
    <item>
      <title>Oop Features</title>
      <link>https://vanslog.io/posts/cs/oop/oop-features/</link>
      <pubDate>Sat, 09 Jan 2021 17:18:32 +0900</pubDate>
      <guid>https://vanslog.io/posts/cs/oop/oop-features/</guid>
      <description>Four characteristics of object-oriented programming (OOP)</description>
    </item>
    <item>
      <title>Class Diagram</title>
      <link>https://vanslog.io/posts/cs/uml/class-diagram/</link>
      <pubDate>Fri, 08 Jan 2021 19:20:43 +0900</pubDate>
      <guid>https://vanslog.io/posts/cs/uml/class-diagram/</guid>
      <description>&lt;h2 id=&#34;what-is-a-class&#34;&gt;What is a class?&lt;/h2&gt;
&lt;p&gt;A class is a set of objects that have the same properties and behaviors. For example, what students majoring in software have in common is that they hear &lt;code&gt;majoring in software&lt;/code&gt; as a fact and &lt;code&gt;same majoring class&lt;/code&gt; as a fact. In this case, &lt;code&gt;student majoring in software&lt;/code&gt; can be said to be a class of actual students.&lt;/p&gt;
&lt;p&gt;Another way to define a class is to see it as &lt;code&gt;a blueprint for creating an instance (object)&lt;/code&gt;. The source code below defines a student class majoring in software. Let&amp;rsquo;s take a look at the code from the perspective of a blueprint for how classes create objects.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
