Preloader image
DDD

자바

ThreadPoolException

작성자 관리자 (admin)
조회수 949
입력일 2021-09-30 21:58:43

/* Digital2u Community > ThreadPool.java */
package com.erp.common.batch;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadPoolExecutor;

/****************************************
* @프로젝트 : Digital2u Community
* @파일명 : ThreadPool.java
* @생성일 : 2021. 9. 30. 
* @작성자 : Charlotte
* @프로그램 설명 : ThreadPoolException 에 대한 극복!
*****************************************
* @변경이력 :
****************************************/
public class ThreadPool {

  public static void main(String[] args) {
    // ExecutorService 인터페이스 구현객체 Executors 정적메서드를 통해 최대 스레드 개수가 1000인 스레드 풀 생성 
    ExecutorService executorService = Executors.newFixedThreadPool(1000);
     
    for(int i = 0; i < 210; i++)
    {
        Runnable runnable = new Runnable() {
             
            @Override
            public void run() {
                //스레드에게 시킬 작업 내용
                ThreadPoolExecutor threadPoolExecutor = (ThreadPoolExecutor) executorService;
                 
                int poolSize = threadPoolExecutor.getPoolSize();//스레드 풀 사이즈 얻기
                String threadName = Thread.currentThread().getName();//스레드 풀에 있는 해당 스레드 이름 얻기
                 
                System.out.println("[총 스레드 개수:" + poolSize + "] 작업 스레드 이름: "+threadName);
                 
                //일부로 예외 발생 시킴
                int value = Integer.parseInt("예외");
            }
        };
 
        //스레드풀에게 작업 처리 요청
        //executorService.execute(runnable);
        //executorService.submit(runnable);
         
         
        //콘솔 출력 시간을 주기 위해 메인스레드 0.01초 sleep을 걸어둠.
        try {
            Thread.sleep(10);
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } 
         
         
    }
     
    //스레드풀 종료
    executorService.shutdown();
 
     
     
     
}
    
}
 

^