EJB 3 JNDI 와 의존 주입

JNDI 는 EJB 를 지탱 하 는 핵심 기술 로 EJB 3 가 annotation 을 도 입 했 기 때문에 더 이상 XML 로 배치 할 필요 가 없다.
서로 다른 응용 서버 가 JNDI 에 대한 이름 이 다 르 기 때문에 개발 할 때 프로그램의 이식 성 을 최대한 고려 하여 JNDI 에서 흔히 볼 수 있 는 몇 가지 방식 을 열거 합 니 다.프로그램 이 사용 하 는 종 류 는 다음 과 같 습 니 다.
@Local
public interface IHelloWorld {
	void sayHello(String name);
}
@Stateless(name="HelloWorldBean")
public class HelloWorldBean implements IHelloWorld{
	public void sayHello(String name) {
		System.out.println("welcome to you "+name);
	}
}

name 의 이름 은 클래스 이름과 같 을 때 생략 할 수 있 습 니 다.
@Remote
public interface IHelloWorldUser {
	public void say(String name);
}
@Stateless
@EJB(name="ejb/HelloWorldImp",beanName="HelloWorldBean",beanInterface=IHelloWorld.class)
public class HelloWorldUser implements IHelloWorldUser{
//  EJB     
	@Resource
	private SessionContext sessionContext;
//  EJB    
	@EJB(name="ejb/HelloWorldImp")
	private IHelloWorld helloWorld0;
	public void say(String name){
		try {
			Context initialContext = new InitialContext();
//
			IHelloWorld helloWorld = (IHelloWorld) initialContext.lookup("java:comp/env/ejb/HelloWorldImp");
			helloWorld.sayHello(name);
			
			IHelloWorld helloWorld2 = (IHelloWorld) sessionContext.lookup("ejb/HelloWorldImp");
			helloWorld2.sayHello(name+"");
			
			helloWorld0.sayHello(name+"");
			
		} catch (NamingException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}

JBOSS 아래 있 으 면 통과 할 수 있 습 니 다.
IHelloWorld helloWorld3 = (IHelloWorld) sessionContext.lookup("HelloWorldBean/local");
			helloWorld3.sayHello(name+"");

이렇게 되면 위의@EJB(name="ejb/Hello WorldImp"...)는 제거 해 야 합 니 다.물론 이 인용 은 JBOSS 에서 만 가능 하 므 로 삼가 사용 하 십시오.
이 JNDI 의 문 제 는 알 지 못 했 고 많은 자 료 를 찾 아 보 았 지만 알 지 못 했다.여기 서 언급 하고 자 하 는 것 은 그'EJB 3 입문 경전'이 엉망 이 고 혼 란 스 러 워 볼 수록 헷 갈 린 다 는 것 이다.

좋은 웹페이지 즐겨찾기