런타임에 로깅을 분리하거나 걸러내는 기능이 필요할 때 유요함. 참고: https://opennote46.tistory.com/170 Logback - SiftingAppender 이름에서 암시하듯이 SiftingAppender는 런타임시에 주어진 어트리뷰터에 따라 로깅을 분리하거나 걸러낼 수 있다. 예를 들어 SiftingAppender는 유저 세션에 따라 로깅 이벤트를 분리할 수 있다. 이러한 opennote46.tistory.com http://www.talkdev.net/logback-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0/ logback 사용하기(1) | 개발자들의 개발 토크! www.talkdev.net http://logback.qos.ch/apidocs/ch/qos..
[번역] 함수형 프로그래밍(Functional Programming) 기초http://kwangshin.pe.kr/blog/2013/01/21/%EB%B2%88%EC%97%AD-%ED%95%A8%EC%88%98%ED%98%95-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8Dfunctional-programming-%EA%B8%B0%EC%B4%88/ [번역] 함수형 프로그래밍 두번째 이야기: 왜 함수형이라고 부를까?http://kwangshin.pe.kr/blog/2015/06/18/fp-e2-why-is-it-called-functional/
출처 : http://tutorials.jenkov.com/java-regex/matcher.html The Java Matcher class (java.util.regex.Matcher) is used to search through a text for multiple occurrences of a regular expression. You can also use a Matcher to search for the same regular expression in different texts.The Java Matcher class has a lot of useful methods. I will cover the core methods of the Java Matcher class in this tutor..
자바에서는 실수 연산의 오차를 줄이기 위해 BigDecimal 클래스를 사용해야 한다.특히, 금액 계산에서 중요한 문제. 샘플코드> package sample.common; import java.math.BigDecimal;import java.math.MathContext;import java.math.RoundingMode; public class BigDecimalSample { public static void main(String[] args) {// 잘못된 실수 연산double da = 0.1;double db = 0.01;double dc = da - db;System.out.println("da - db = " + dc); // 0.09000000000000001// 올바른 실수 연산 예B..
멀티의 쓰레드가 다 종료될 때까지 기다리는 로직을 구현할 경우 유용한 CountDownLatch 클래스의 사용 예,. package sample.thread; import java.util.Random;import java.util.concurrent.CountDownLatch; public class CountDownLatchSample { private final static int THREAD_COUNT = 10;private static CountDownLatch lacth = new CountDownLatch(THREAD_COUNT); public static class RandomSleepRunnable implements Runnable {private int id = 0;private st..
원문 : http://gamadeus.tistory.com/entry/JMX-%EA%B8%B0%EC%88%A0%EC%9D%B4%ED%95%B4 Enterprise Java Technologies Tech Tips에 오신 여러분을 환영합니다. Java 2 Platform, Enterprise Edition (J2EE)에 기반한 enterprise Java technologies 와 APIs의 사용에 관한 최신 정보를 얻어 가시기 바랍니다. 이 글에서는 Java 2 Java 2, Enterprise Edition, v 1.4 를 사용합니다. 다운로드이번 호에서는,JMX 기술 이해하기 SUN JAVA STREAMING XML PARSER 소개를 다루게 됩니다.저자 Robert Eckstein##########..
- Total
- Today
- Yesterday