일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- profile
- 단축키
- bash
- 줄바꿈 문자
- ssh
- import
- grep
- lsof
- Windows 10
- Eclipse
- netsh
- IntelliJ
- context
- plugin
- Source
- JavaScript
- Mac
- port
- GIT
- Windows
- VirtualBox
- Quartz
- vscode
- xargs
- maVen
- find
- tomcat
- resource
- 네트워크
- web.xml
- Today
- Total
목록분류 전체보기 (1803)
develog
public void getApplicationContext1() { ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring-config.xml"); System.out.println(">> getApplicationContext1() : " + context);} public void getApplicationContext2() { ApplicationContext context = new FileSystemXmlApplicationContext("classpath:spring-config.xml"); System.out.println(">> getApplicationContext2() : " + context)..
http://static.springsource.org/spring/docs/2.5.x/reference/xsd-config.html DTD-style XML Schema-style
package test; import org.junit.runner.RunWith;import org.junit.runners.Suite;import org.junit.runners.Suite.SuiteClasses; @RunWith(Suite.class)@SuiteClasses({CalculatorTest.class, CalculatorTest2.class})public class AllTests {}
package test; import static org.junit.Assert.*; import java.util.Arrays;import java.util.Collection; import org.junit.Before;import org.junit.Test;import org.junit.runner.RunWith;import org.junit.runners.Parameterized;import org.junit.runners.Parameterized.Parameters; @RunWith(Parameterized.class)public class CalculatorTest {Calculator cal;private int num1;private int num2;public CalculatorTest(..
● 프로젝트에 아래 파일을 추가 ● build.xml 파일 내용