为helper类注释数据源

时间:2013-01-29 20:55:17

标签: jdbc annotations ejb-3.0

我在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的资源注入时工作正常。 需要做些什么才能让辅助类可以访问资源?

0 个答案:

没有答案