<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Java on ryan-han.com ❌ 🡒 integer.blog ⭕️</title>
    <link>http://integerous.github.io/tags/java/</link>
    <description>Recent content in Java on ryan-han.com ❌ 🡒 integer.blog ⭕️</description>

    

    <generator>Hugo -- gohugo.io</generator>
    <language>ko-kr</language>
    <lastBuildDate>Sat, 05 Aug 2023 17:01:58 -0700</lastBuildDate>
    <atom:link href="/tags/java/" rel="self" type="application/rss+xml" />
    
    <item>
      <title>블로그 옮겼습니다!</title>
      <link>http://integerous.github.io/post/dev/blog-migration/</link>
      <pubDate>Sat, 05 Aug 2023 17:01:58 -0700</pubDate>
      
      <guid>http://integerous.github.io/post/dev/blog-migration/</guid>
      <description>새로운 블로그는 구독할 수 있어서, 새 글이 올라오면 이메일로 받아보실 수 있습니다 :)</description>
    </item>
    
    <item>
      <title>Java Serialization 개념 정리</title>
      <link>http://integerous.github.io/post/dev/serialization/</link>
      <pubDate>Sat, 18 Jan 2020 22:00:08 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/serialization/</guid>
      <description>새로 맡게 된 레거시 프로젝트의 몇몇 클래스들이 Serializable 인터페이스를 왜 상속받는지 알아보는 과정에서 Java 직렬화 개념 정리 작성일 : 2019년 10월 13일 간단하게 Java 내</description>
    </item>
    
    <item>
      <title>XML 데이터를 Java 객체로 변환하기 (feat. JAXB)</title>
      <link>http://integerous.github.io/post/dev/xml_to_java_object/</link>
      <pubDate>Tue, 04 Jun 2019 00:29:21 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/xml_to_java_object/</guid>
      <description>XML 데이터를 Java 객체로 변환하여 사용한 경험을 정리해본다. JSON 데이터만 다루다가 XML을 다루어야 했기 때문에 조금 생소했다. (요즘 같은 세상에 XML 이라니!) 그런</description>
    </item>
    
    <item>
      <title>Try-with-resources를 이용한 자원해제 처리</title>
      <link>http://integerous.github.io/post/dev/try_with_resources/</link>
      <pubDate>Thu, 30 May 2019 23:04:20 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/try_with_resources/</guid>
      <description>코드 리뷰를 받던 중 Try-with-resources를 알게 되어 정리 코드 리뷰를 받기 전 코드는 아래와 같았다. public static String getHtml(String url) { try{ URL targetUrl = new URL(url); BufferedReader reader = new BufferedReader(new InputStreamReader(targetUrl.openStream())); StringBuffer</description>
    </item>
    
    <item>
      <title>추상(abstract) 클래스가 필요한 기본적인 이유</title>
      <link>http://integerous.github.io/post/dev/abstract_class/</link>
      <pubDate>Wed, 22 May 2019 23:47:00 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/abstract_class/</guid>
      <description>Java의 정석으로 Java의 개념들을 공부한 나는 추상클래스가 언제나 찝찝했다. 개발을 공부하기 시작한지 얼마 안되어 학습한 내용이었기 때문에 적당한 수준으</description>
    </item>
    
    <item>
      <title>자바의 정석 - 직렬화(Serialization)</title>
      <link>http://integerous.github.io/post/dev/java-serialization/</link>
      <pubDate>Sun, 02 Dec 2018 00:37:49 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/java-serialization/</guid>
      <description>자바의 정석(남궁성 저) 2권 학습내용 정리 1. 직렬화란? 객체를 데이터 스트림으로 만드는 것 객체에 저장된 데이터를 스트림에 쓰기 위해 연속적인 데이터로 변환하는</description>
    </item>
    
    <item>
      <title>자바의 정석 - 스트림(Stream)</title>
      <link>http://integerous.github.io/post/dev/java-stream/</link>
      <pubDate>Thu, 29 Nov 2018 00:10:13 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/java-stream/</guid>
      <description>자바의 정석(남궁성 저) 2권 학습내용 정리 1. 스트림(Stream) 스트림은 데이터 소스를 추상화하고, 데이터를 다루는데 자주 사용되는 메서드들을 정의해 놓</description>
    </item>
    
    <item>
      <title>자바의 정석 - 람다식(Lambda Expression)</title>
      <link>http://integerous.github.io/post/dev/java-lambda/</link>
      <pubDate>Thu, 29 Nov 2018 00:10:00 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/java-lambda/</guid>
      <description>자바의 정석(남궁성 저) 2권 학습내용 정리 1. 람다식 메서드를 하나의 식(expression)으로 표현한 것. 메서드를 람다식으로 표현하면 메서드의 이름과</description>
    </item>
    
    <item>
      <title>자바의 정석 - 쓰레드(Thread)</title>
      <link>http://integerous.github.io/post/dev/java-thread/</link>
      <pubDate>Tue, 30 Oct 2018 01:39:34 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/java-thread/</guid>
      <description>자바의 정석(남궁성 저) 2권 학습 1. 프로세스와 쓰레드 프로세스란 실행중인 프로그램이다. 프로그램을 실행하면 OS로부터 실행에 필요한 자원(메모리)를 할당</description>
    </item>
    
    <item>
      <title>자바의 정석 - 열거형(Enums)</title>
      <link>http://integerous.github.io/post/dev/java-enums/</link>
      <pubDate>Sun, 28 Oct 2018 19:29:48 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/java-enums/</guid>
      <description>자바의 정석(남궁성 저) 학습내용 정리 1. 열거형(Enums) Java의 열거형은 C언어의 열거형과 다르게 열거형이 갖는 값 뿐만 아니라 타입까지 관리한다. 기</description>
    </item>
    
    <item>
      <title>자바의 정석 - 지네릭스(Generics)</title>
      <link>http://integerous.github.io/post/dev/java-generics/</link>
      <pubDate>Thu, 25 Oct 2018 00:28:04 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/java-generics/</guid>
      <description>자바의 정석(남궁성 저) 학습내용 정리 1. 지네릭스(Generics) 지네릭스는 다양한 타입의 객체들을 다루는 메서드나 컬렉션 클래스에 컴파일 시의 타입 체크</description>
    </item>
    
    <item>
      <title>AWS EC2 서버에 Java 프로젝트 배포/재배포</title>
      <link>http://integerous.github.io/post/dev/deployonec2/</link>
      <pubDate>Sun, 07 Oct 2018 23:30:21 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/deployonec2/</guid>
      <description>회사 고객센터용 카카오톡 챗봇을 만들어 AWS EC2 서버에 배포하기 위해 박재성님 유튜브 강의를 들으며 실습한 내용 목차 1. AWS EC2 인스턴스 생성 2. 생성한 인스턴스(서버)에</description>
    </item>
    
    <item>
      <title>Java 문자열 연결방법 비교</title>
      <link>http://integerous.github.io/post/dev/stringconcat/</link>
      <pubDate>Sun, 07 Oct 2018 18:21:44 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/stringconcat/</guid>
      <description>CodeWars에서 알고리즘 문제들을 풀다보면 문자열 연결할 일이 많았는데, 퍼포먼스 이슈가 많다 보니 정리가 필요했다. 이 글에서는 StringBuilder, StringBuffer, + 연산자, Conc</description>
    </item>
    
    <item>
      <title>자바의 정석 - 컬렉션 프레임웍(Collections Framework)</title>
      <link>http://integerous.github.io/post/dev/java-collections/</link>
      <pubDate>Sun, 07 Oct 2018 10:02:58 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/java-collections/</guid>
      <description>자바의 정석(남궁성 저) 학습내용 정리 1. 컬렉션 프레임웍 (Collections Framework) &amp;lsquo;데이터 그룹을 다루고 표현하기 위한 단일화된 구조&amp;rsquo; - Java API문서 JDK1.2</description>
    </item>
    
    <item>
      <title>자바의 정석 - 날짜와 시간(Calendar와 Date, java.time패키지)</title>
      <link>http://integerous.github.io/post/dev/java-calendar-date/</link>
      <pubDate>Wed, 03 Oct 2018 14:01:53 +0900</pubDate>
      
      <guid>http://integerous.github.io/post/dev/java-calendar-date/</guid>
      <description>자바의 정석(남궁성 저) 학습내용 정리 1. Calendar 와 Date Date는 JDK1.0, Calendar는 JDK1.1 부터 제공되었다. JDK1.8부터 java.time 패키지로 Calendar와 Dat</description>
    </item>
    
  </channel>
</rss>
