전체 글 (286) 썸네일형 리스트형 ThreadPoolExecutor http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ThreadPoolExecutor.html#execute(java.lang.Runnable)ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueueRunnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) * corePoolSize : Pool의 MIN크기* maximumPoolSize : Pool의 MAX 크기* keepAliveTime : Thread가 Idle이고 현재 .. Java Semaphore Semaphore import java.util.concurrent.Semaphore; //Solving the mutual exclusion problem using Semaphore class class Process2 extends Thread { private int id; private Semaphore sem; public Process2(int i, Semaphore s) { id = i; sem = s; } private int random(int n) { return (int) Math.round(n * Math.random() - 0.5); } private void busy() { try { sleep(random(500)); } catch (InterruptedException e).. ThreadpoolExecutor ThreadpoolExecutor 출처: http://programmingexamples.wikidot.com/threadpoolexecutor public class ThreadPoolExecutor extends AbstractExecutorService An ExecutorService that executes each submitted task using one of possibly several pooled threads, normally configured using Executors factory methods. Thread pools address two different problems: they usually provide improved performance when executing.. Url http://blogs.adobe.com/aharui/ http://dougmccune.com/blog/category/flexlib/ http://blog.daum.net/hi_ujin/15648566 http://www.zhuoqun.net/ko/html/ytag/demo/ http://www.zhuoqun.net/ko/html/ytag/demo/page/2/ http://flex.org/showcase/drupal/showcase/best4c-online-diagram http://www.communitymx.com/content/article.cfm?page=7&cid=0A055 http://npramesh.wordpress.com/2008/05/22/flex-tutorial-demo-link/ .. SVN과 SVNSERVERManager Setting 1. 아래의 링크에서 최신 버젼의 SVN과 SVNSERVERManager 를 다운 받거나, 첨부된 파일을 다운로드. http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91&expandFolder=91&folderID=74 http://www.pyrasis.com/main/SVNSERVEManager 2. SVN 을 설치 3. SVN 에서 관리할 소스들을 저장할 루트 디렉토리르 생성 3-1. mkdir d:\svn 3-2. mkdir d:\svn\data 4. 프로젝트 소스 및 설정 파일들을 저장할 Repository(저장소)를 생성 (추후에 프로젝트를 새로 생성할때 마다 아래와 같은 방식으로 계속 저장소 생성) 4-1. svnadmin.. Oracle Database XE Oracle Database XE 설치 http://www.oracle.com/technology/software/products/database/xe/htdocs/102xewinsoft.html http://eduunix.ccut.edu.cn/index/database/Oracle/ SQL> conn /as sysdba 연결되었습니다. SQL> show user USER은 "SYS"입니다 SQL> create user myOracleXe identified by dev default tablespace system; 사용자가 생성되었습니다. SQL> grant connect, resource to myOracleXe; 권한이 부여되었습니다. SQL> conn myOracleXe/dev 연결되었습니다. Spring2.5 Book 책 소개 스프링 2/2.5의 새로운 기능을 포함한, 스프링 2.5 입문서. 이 책은 스프링을 이용하여 웹 어플리케이션을 개발하는데 알고 있어야 할 내용으로 구성되어 있으며, 5개 파트로 이루어져 있다. 스프링 기초 파트인 1장~3장에서는 스프링 프레임워크에 대하여 소개하고, 스프링의 핵심기능인 DI와 AOP에 대해 살펴본다. 두 번째 스프릥 MVC 파트인 4장~5장에서는 스프링이 제공하는 MVC 프레임워크를 이용해서 웹 어플리케이션을 개발하는 방법을 소개한다. 세 번째 데이터베이스 연동과 엔터프라이즈 서비스 파트인 6장~8장은 스프링에서 데이터베이스 연동과 다양한 엔터프라이즈 서비스를 연동하는 방법을 알아보며, 마지막으로 테스트 파트인 9장에서는 스프링이 제공하는 테스트 지원 클래스를 이용해서 JUnit.. Apache 프로젝트 리스트 Archiva : The Build Artifact Repository Manager => 사적인 혹은 전사적인 빌드 구성물의 레포지토리의 처리를 도와주는 확장성있는 레포지토리 관리 소프트웨어 원격 레포지토리 프락싱, 정보보호 접근 관리, 빌드 구성물들의 저장소, 배달, 브라우징, 인덱싱, 이용레포트작성, 확장스캔 등의 기능을 제공한다. Beehive : => J2EE 및 Struts 기반의 간단한 객체 모델을 빌드함으로써 J2EE 프로그래밍을 단순화시키기 위함 새로운 JSR-175 annotation 을 사용하여 J2EE 에 필요되는 코딩을 줄여줌 다음의 3가지 부분을 가짐 - NetUI - Controls - Web Service Metadata ( WSM ) : JSR-181 ( 자바 웹서비스의 빌.. 이전 1 ··· 31 32 33 34 35 36 다음