在通过Eclipse Luna创建EJB 2.1项目时如何为Websphere 8.5编写jndi.properties

时间:2018-12-17 14:54:48

标签: java eclipse jboss websphere ejb-2.x

我看到了JBoss Server的jndi.properties文件的示例

java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
java.naming.provider.url=localhost

我应该在此处进行哪些更改以使其适用于Websphere 8.5?

我正在使用本教程作为参考

https://www.tutorialspoint.com/ejb/ejb_create_application.htm

1 个答案:

答案 0 :(得分:0)

以下是具有可在我的Websphere 8.5环境中使用的属性的代码段:

import java.util.Properties;
import javax.naming.Context;
import javax.naming.InitialContext;

Properties p = new Properties();
p.put(Context.PROVIDER_URL, "iiop://localhost:2809");
p.put(Context.INITIAL_CONTEXT_FACTORY, "com.ibm.websphere.naming.WsnInitialContextFactory");
p.put("com.ibm.websphere.naming.jndicache.cacheobject", "cleared");

Context context = new InitialContext(p);