Spring Framework 소개 스프링 프레임워크는 어떤 플랫폼에서도 종합적인 프로그래밍과 자바 기반의 현대 엔터프라이즈 어플리케이션의 Configuration Model을 제공한다. 스프링의 핵심요소는 어플리케이션 단위의 인프라를 제공한다는 것입니다. 스프링은 기업용 어플리케이션의 plumbing에 초점을 맞추고 있습니다. 그래서 개발팀은 특정 배포 환경에서 불필요한 시도없이 어플리케이션의 비지니스 로직에 초점을 맞출 수 있습니다. 1. Spring Framework 정의 자바 엔터프라이즈 개발을 편하게 해주는 오픈 소스 경량급 애플리케이션 프레임워크 자바(JAVA) 플랫폼을 위한 오픈소스(Open Source) 어플리케이션 프레임워크 자바 개발을 위한 프레임워크로 종속 객체를 생성해주고, 조립해주..
Thread 스레드 파일 생성 및 입력 Test.java package Tread; import java.io.*; public class Test { public static void main(String[] args) throws IOException { File file = new File("C:\\Users\\hyunui\\Desktop\\새 폴더\\스레드테스트.txt"); OutputStream os_tmp = new FileOutputStream(file); OutputStream os = new BufferedOutputStream(os_tmp); for (int i = 0; i
Thread 동작 1. Ex_th.java package Tread; public class Ex_th { public static void main(String[] args) throws InterruptedException { try { mythread my_thread1 = new mythread("1"); mythread my_thread2 = new mythread("2"); my_thread1.run(); my_thread1.wait(2000); my_thread1.notify(); System.out.println("main"); } catch (IllegalMonitorStateException Ex_th) { System.out.println(); } } } 2. mythread.java..