25 Şubat 2018 Pazar

JMS Destination Arayüzü

Giriş
Şu satırı dahil ederiz.
import javax.jms.Destination;
constructor
Şöyle yaparız.
@Bean
public Destination getDest(InitialContext ctx) throws Exception {
  Destination dest = null;
  try{
    dest = (Destination) ctx.loolup (jms/foo);
  }
  catch(NamingException ne){
    throw ne;
  }
  return dest;
}

Hiç yorum yok:

Yorum Gönder