curl은 REST API 방식으로 개발하는 경우 필수적인 요소인듯 싶다.
몇가지 간단한 사용법만 알아보자.
1. GET 방식으로 보내기
curl http://host_address:port
2. 헤더정보 받기.
curl -i http://host_address:port
3. 오직 헤더만 받기.
curl -s -o /dev/null -w...
Java 8 In Action - Design Pattern
Lambda를 이용하여 기존 디자인패턴을 변경해보기
from Java 8 In Action
1. 전략패턴
1.1 일반적인 전략패턴 개발방식
public interface ValidationStrategy {
boolean execute(String s);
}
public class IsAllowerCase implements ValidationStrategy...
ForkJoinPool 예제
ForkJoinPool
ForkJoinPool 은 Java7부터 사용가능한 Java Concurrency 툴이며, 동일한 작업을 여러개의 Sub Task로 분리(Fork)하여 각각 처리하고, 이를 최종적으로 합쳐서(Join) 결과를 만들어내는 방식이다.
ForkJoinPool에는 2가지 인터페이스를 제공한다.
- RecursiveAction :
> RecursiveAction은...
Eclipse MAT (Memory Analysis Tool) 사용하기

1. MAT 다운로드 사이트
http://www.eclipse.org/mat/downloads.php
2. 다음 코드를 작성해서 테스트 해보기
import java.util.ArrayList;
import java.util.List;
public class Main {
List<String> memoryLeakList = new ArrayList<>();
...
Java9 새로운 기능
from : http://www.journaldev.com/13121/java-9-features-with-examples
1. Java9 다운로드 받는곳
https://jdk9.java.net/download/
2. JAVA9의 주요 기능
2.1 Java 9 REPL [Read Evaluate Print Loop] : (JShell)
- Java...
GIT pull 오류
Git을 이용하여 pull을 수행할때 다음과 같은 오류가 날 수 있다.
오류상황 :
error: unable to resolve reference refs/remotes/origin/xxxx_file: No such file or directory
From git+ssh://remoteserver/~/test
! [new branch] xxxx_file -> origin/xxxx_file...
Blog Scheme
https://drive.google.com/open?id=0ByAEyDOwybZSUGRzaFdhbTdV...
피드 구독하기:
글 (Atom)