Oracle OC4J(又名 Orion)参数 -userThreads
有人知道这个参数的作用吗,它用于启动Oracle的oc4j应用服务器?
Anyone know what this parameter does, it is used in starting up Oracle's oc4j application server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常在像这样的 Java EE 应用服务器中,您“应该”使用 EJB 并让 EJB 容器处理线程。
如果您确实使用线程,它们将无法访问应用程序服务器资源(上下文),例如数据源和其他 JNDI 资源。
为了能够从用户创建的线程中进行上下文查找,您应该使用该参数。
Usually in a Java EE application server like that you "should" be using EJB and let the EJB container handle the threading.
If you do use thread, they won't be able to access the Application server resources (the context) such as data sources and other JNDI resources.
In order to be able to do context lookups from user created threads you should use that parameter.