Java 썸네일형 리스트형 JUnit 3 단계 JUnit 4를 적용 Annotation으로 적용하여 본다. package test.dao; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import java.util.List; import logic.Item; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.c.. 더보기 JUnit 2 단계 테스트 클래스에 테스트 메소드 내의 객체는 메소드 마다 생성된다고 한다. 그래소 메소드 내에서 DAO 같은 공유 객체는 한번만 생성되도록 메소드에서 빼내어 보자. 더보기 JUnit 1 단계 1. junit.framework.TestCase TestCase 상속 받고, 2. 테스트가 돌아가는 메소드는 public void 이름은 test~~로 시작해야 한다. 더보기 날짜 포멧 정리 더보기 Java 형변환 정리 int to string String myString = Integer.toString(my int value); String str = "" + i; String to int int i = Integer.parseInt(str); int i = Integer.valueOf(str).intValue(); double to String String str = Double.toString(i); long to String String str = Long.toString(l); float to String String str = Float.toString(f); String to double double d = Double.valueOf(str).doubleValue(); String to long long .. 더보기 oracle package & cursor 사용 1. package 선언 2. package 바디 정의 3. 자바에서 사용해 보자. 더보기 log4j 출력 import org.apache.log4j.Logger; import org.apache.log4j.BasicConfigurator; public class SimpleLog { // Logger 클래스의 인스턴스를 받아온다. static Logger logger = Logger.getLogger(SimpleLog.class); public SimpleLog() {} public static void main(String[] args) { /* 콘솔로 로그 출력 위한 간단한 설정, 이 설정이 없다면 경고 메세지가 출력되면서 실행이 중단된다.*/ BasicConfigurator.configure(); logger.debug("Hello log4j."); logger.info("Hello log4j."); .. 더보기 쓸만한 자바 사이트 링크들 http://www.javaalmanac.com - The online counterpart of the Java Developer's Almanac - highly recommended for quick code snippets, and if you like the site, buy the book. http://www.onjava.com - O'Reilly's Java website. New articles weekly. http://java.sun.com - The official Java developer website - new articles posted weekly. http://www.developer.com/java - Java articles hosted by Gamelan.com ht.. 더보기 Tomcat 6 JNDI 설정 위 형식으로 다음 두 군데 중 하나에 설정 context.xml의 태그사이 server.xml의 아래쪽 태그사이 jsp 페이지로 테스트 아래 블로그에서 참고함 http://blog.naver.com/ssong24?Redirect=Log&logNo=66080493 더보기 cvs 서버 설정 http://blog.naver.com/lriberio?Redirect=Log&logNo=80069012468 더보기 이전 1 ··· 6 7 8 9 10 11 12 다음