본문 바로가기

전체 글239

[SPRING BOOT] MYBATIS 활용 SPRING BOOT 는 뭘하든 꿀~이다. 넘나 편한것 ~ MYBATIS 를 사용하기 위해서는 아래의 DEP 만 추가하면 끝. org.mybatis.spring.boot mybatis-spring-boot-starter 1.0.0 이제 끝 .. 할게 없다. 다음, application.yml 을 보자. spring: datasource: driverClassName: oracle.jdbc.driver.OracleDriver url: jdbc:oracle:thin:@xx1921:ORCL username: xx password: xx batch: job: enabled: false mybatis: typeAliasesPackage: xx mapperLocations: classpath*:**/mappers/.. 2016. 8. 3.
[SPRING BOOT] SPRING BATCH + SCHEDULER scheduler를 통해서 batch 가 돌고, rest 기능을 수행하는 서버를 spring boot 를 통해서 만들어야 할 일이 생겼다. 일단, maven ! org.springframework.boot spring-boot-starter-batch org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-test test org.codehaus.janino janino org.mybatis.spring.boot mybatis-spring-boot-starter 1.0.0 org.projectlombok lombok 1.16.4 provided com.oracle ojdbc6 11.1.0.7... 2016. 8. 3.
아리랑 형태소 분석기에서 형태소 정보 추출 형태소 분석결과 클래스 AnalysisOutput 에서 stem, pos 가져오기 public static class _MORPH { private String stem; private char pos; public _MORPH() { // TODO Auto-generated constructor stub } public _MORPH(String stem, char pos) { this.stem = stem; this.pos = pos; } public String getStem() { return stem; } public void setStem(String stem) { this.stem = stem; } public char getPos() { return pos; } public void setP.. 2016. 8. 2.
junit list test import org.junit.Test; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import org.hamcrest.collection.IsEmptyCollection; import static org.hamcrest.CoreMatchers.*; import static org.hamcrest.collection.IsCollectionWithSize.hasSize; import static org.hamcrest.collection.IsIterableContainingInAnyOrder.containsInAnyOrder; import static org.hamcrest.collection.IsIterableC.. 2016. 7. 29.
Penn treebank Tagset https://gist.github.com/nlothian/9240750 Clause LevelS - simple declarative clause, i.e. one that is not introduced by a (possible empty) subordinating conjunction or a wh-word and that does not exhibit subject-verb inversion. SBAR - Clause introduced by a (possibly empty) subordinating conjunction. SBARQ - Direct question introduced by a wh-word or a wh-phrase. Indirect questions and relative c.. 2016. 7. 28.
에티카 자유와 긍정의 철학 (이수영) 땅에서 넘어진자 땅을 짚고 일어나라고 했다. 이 책을 만나지 않고, 아니 정확히 스피노자를 만나지 않고어떻게 기독교 신에서 완전히 벗어날 수 있을까? 기독교의 대립과 심판과 공포의 신을 어떻게 벗어 날 수 있을까? 오랜 시간 헤맸다.니체를 만났음에도 인문학적 신학이라는 교묘한 속임수에 오랫동안 길을 잃고 헤맸다. 거참, 교묘하다.선악저편에서 늙은 칸트를 조심하라던 니체의 충고는 정확했지만, 나는 그럼에도 불구하고 놓을 수 없고 벗어날 수 없었다. 그건 어린시절 부터 내 혈관에 뿌리 박힌교리를 빼버릴 수 없었기 때문이리라. 중요한건 땅에서 넘어졌기에 땅에서 일어나야만 한다. 교리에 메여있는자, 교리로 부터 벗어나야 한다. 그것을 가능하게 해주는 자가 바로 스피노자다. 책에서처럼, 자고로 신이라고 불리려면 .. 2016. 6. 14.
elasticsearch 2.3.3 bulk index 예제 public static BulkProcessor esBulk(Client client) throws UnknownHostException, IOException { BulkProcessor bulkProcessor = BulkProcessor.builder( client, new BulkProcessor.Listener() { @Override public void beforeBulk(long executionId, BulkRequest request) { // System.out.println("@before bulk indexing"); } @Override public void afterBulk(long executionId, BulkRequest request, BulkResponse respo.. 2016. 6. 14.