我在MDB中声明了一个资源依赖项,它将由一个帮助器类使用。
@MessageDriven(name = "BazaarBillingMDB", mappedName = "jms/EJB3Queue", activationConfig = {
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(propertyName = "destinationName", propertyValue = "jms/EJB3Queue") }
)
@Resource(name="EJB3Source",mappedName="jdbc/EJB3Source",type=javax.sql.DataSource.class)
public class BazaarBillingMDB implements MessageListener {
public void onMessage(Message message) {
try {
TextMessage msg = (TextMessage) message;
String order = (String) msg.getText();
try {
bazaarhelper helper=new bazaarhelper();
helper.insertBilling(order);
}
....
}
帮助程序类(bazaarhelper)尝试获取此数据源的句柄:
try {
context=new InitialContext();
dataSource = (DataSource)context.lookup("java:comp/env/EJB3Source");
conn = dataSource.getConnection();
但是,当助手类试图获取数据源的句柄时,我总是面临NamingException。 这个数据源在作为另一个EJB的资源注入时工作正常。 需要做些什么才能让辅助类可以访问资源?