ejb 작업에 필요한 기본 도구 방법 클래스

1894 단어
ManageProperties 클래스
package org.mo.common.util;

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import java.util.concurrent.locks.Lock;

import javax.naming.Context;

public class ManageProperties {
	
	private final static String SRC = "/ejb.Properties";

	private static ManageProperties instance;

	private ManageProperties() {
	}

	public static ManageProperties getInstance() {
		synchronized (Lock.class) {
			if (instance == null) {
				instance = new ManageProperties();
			}
		}
		return instance;
	}

	public Properties getEJBProperties() {
		Properties props = new Properties();
		props.setProperty(Context.INITIAL_CONTEXT_FACTORY,getContent("contextFactory"));
		props.setProperty(Context.PROVIDER_URL, getContent("url"));
		props.setProperty(Context.URL_PKG_PREFIXES, getContent("pkg"));
		return props;
	}

	public String getContent(String key) {
		Properties properties = new Properties();
		InputStream inStream = getClass().getResourceAsStream(SRC);
		String property = null;
		try {
			properties.load(inStream);
			property = properties.getProperty(key);
		} catch (IOException e1) {
			e1.printStackTrace();
		}
		return property;
	}

	public String getContent(String src, String key) {
		Properties properties = new Properties();
		InputStream inStream = getClass().getResourceAsStream(src);
		String property = null;
		try {
			properties.load(inStream);
			property = properties.getProperty(key);
		} catch (IOException e1) {
			e1.printStackTrace();
		}
		return property;
	}
}

ejb.Properties
contextFactory=org.jnp.interfaces.NamingContextFactory
url=localhost\:1099
pkg=org.jboss.naming\:org.jnp.interfaces

//예:
InitialContext context = new InitialContext(props);
 Queue messageQueue = (Queue)context.lookup("/queue/mzq");

좋은 웹페이지 즐겨찾기