• 2017사물인터넷 국제전시회 참관기

    2017 사물인터넷 국제전시회 10월 11일부터 13일까지 3일간 개최 2017 사물인터넷 국제전시회가 10월 11일부터 13일까지 3일간 개최되어 행사 첫날 참관을 하였다. 사물인터넷이라는 기술은 무수히 많이 들어서 이제는 더 이상 낯선 단어는 아니지만, 아직 IoT 기술들에 대한 사용 경험이 없어 추상적인 개념만 가지고 참관을 했다. IoT 시장에서 치열하게 경쟁하고 있는 국내 대형...


  • git project를 github로 공개하기

    github에 repository 만들기 https://github.com/[github 계정명]/[repository 이름].git git@github.com:[github 계정명]/[repository 이름].git project를 git project로 만들기 git init remote 등록(SSH로 접속) git remote add [remote명] [리모트주소] git remote add origin git@github.com:[github 계정명]/[repository 이름].git remote tracking git branch -u [remote명]/[remote branch명] [local branch명] git branch -u origin/master master local을 remote로 커밋된 자원을 push git...


  • 로컬pc에서 github에 push 할 수 있게 만들기(SSH)

    github에 로컬pc 공개키 만들고 github에 등록하기 SSH key가 있는지 확인 ls -al ~/.ssh 기존에 만든 키가 있으면 id_dsa.pub id_ecdsa.pub id_ed25519.pub id_rsa.pub 와 같은 파일을 볼 수 있음 SSH key 만들기 ssh-keygen -t rsa -b 4096 -C "your_email@example.com" Enter file in which to save the key(/Users/[user]/.ssh/id_rsa): 에서 그냥 엔터치면 id_rsa 이름으로...


  • java 제네릭스

    본 문서는 Oracle의 Java Document 중 Generics 부분을 발췌하여 번역한 문서입니다. 원래 의미를 정확하게 표현하기 위해, 필요한 경우 원문을 괄호 안에 표기하였습니다. This document is a translation of documents in Hangul excerpts of the Generics part of Oracle’s Java Document. In order to understand the original meaning correctly, the original...


  • Spring MVC 경로 설정

    목표 크게 3가지 타입의 요청을 수신해서 처리 결과를 리턴한다. UI page Ajax 기반 Service 전문 요청에 Media Type을 포함하여 해당하는 Media type으로 결과를 리턴한다. Url UI Page 요청 ~/{media type}.page/{page id} Ajax 기반 Service 요청 ~/{media type}.service/{service id} 전문 요청 ~/{media type}.message/{message id} Web Project 구조 java controllers resources contexts...