curl 유용한 사용법 몇가지

curl 유용한 사용법 몇가지
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

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 ForkJoinPool 은 Java7부터 사용가능한 Java Concurrency 툴이며, 동일한 작업을 여러개의 Sub Task로 분리(Fork)하여 각각 처리하고, 이를 최종적으로 합쳐서(Join) 결과를 만들어내는 방식이다. ForkJoinPool에는 2가지 인터페이스를 제공한다.  - RecursiveAction :  > RecursiveAction은...

GIT pull 오류

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...