我的 hornetq 在独立模式下运行。我需要使用注释的连接工厂对象。
没有注释我的代码是这样的。
public static void main(String args[]) {
Connection connection = null;
InitialContext initialContext = null;
ConnectionFactory connectionFactory = null;
Hashtable<String, String> env = new Hashtable<String, String>();
env.put(Context.PROVIDER_URL, "jnp://localhost:1099");
env.put(Context.INITIAL_CONTEXT_FACTORY,
"org.jnp.interfaces.NamingContextFactory");
env.put(Context.URL_PKG_PREFIXES,
"org.jboss.naming:org.jnp.interfaces");
initialContext = new InitialContext(env);
connectionFactory = (ConnectionFactory) initialContext
.lookup("ConnectionFactory");
connection = connectionFactory.createConnection();
}
在这里,我可以获得连接对象。
使用注释我的代码是这样的。
public class Test {
@Resource(mappedName = "ConnectionFactory")
private static ConnectionFactory connectionFactory;
public static void main(String args[]) {
Connection connection = null;
connection = connectionFactory.createConnection();
}
}
在这里,我将 connectionfactory 对象设为空。
(注解查找connectionfactory失败)
任何人都告诉我获取连接工厂对象所需的配置。它对我有很大帮助。
谢谢你。