问题标签 [oc4j]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
2033 浏览

java - How to use jaxb 2 in a web application within Oracle Application Server

I have an application that is running Jaxb 2.1.12. I am running JDK 1.5 and OC4J 10.1.3.4.0. When I try to use the portion of my application that is using Jaxb, I get the following error:

I narrowed this down to the xml.jar that comes with OC4J. It contains Jaxb 1.0 classes. I can fix this error by adding the following to the orion-application.xml file:

The problem is that I am deploying the WAR file to OC4J by using the admin_client.jar utility. I do not have an EAR to put the orion-application.xml file in, so I decided to try adding the orion-web.xml file to the WAR's WEB-INF directory and setting the search-local-classes-first property to true:

This causes the application to not deploy at all. I get an error saying that the Spring configuration files cannot be parsed. I would like to use search-local-classes-first. How can I use this property? Also is there a way that I can deploy the orion-application.xml file with the WAR file?

Note: I do not get this error with Java 1.6 and I believe that is because 1.6 comes packaged with Jaxb 2.

0 投票
4 回答
3188 浏览

java - 确定我们的应用程序部署到哪个应用程序服务器?

我们的 J2EE 应用程序部署到 JBoss,有时部署到 OC4J。我可以知道使用的是哪一个吗?我希望有一种方法可以在运行时返回容器信息。

0 投票
2 回答
1714 浏览

java - 外部目录中的 JSP 文件

在我的项目中,我们允许客户在 JSP 页面中编写客户特定的逻辑并附加到我们的产品中。现在在部署 .ear 文件后,客户将自定义文件复制到 /WebContent/custom 目录下,以便我们可以引用这些 JSP。这是一个繁琐的安装过程,我想简化一下。

我尝试了以下解决方案

1)extendedDocumentRoot - IBM WebSphere 当我将 JSP 保存在 EAR 部署目录之外时,它工作正常

2) OC4J - 该解决方案在 OracleAS 中也可以正常工作。

我正在寻找适用于所有 J2EE 容器的通用解决方案。

0 投票
3 回答
3740 浏览

oc4j - OC4J 问题:global-web-application.xml 有效,orion-web.xml 无效

我最近在 OC4J 中“解决”了一个关于使用 Xerces 而不是 OC4J 的内置解析器的常见问题。通过将此行添加到 global-web-application.xml 解决了该问题:

<web-app-class-loader search-local-classes-first="true"/>

不幸的是,这是一种过于粗暴的方法,可能会导致应用服务器出现问题,因此我尝试通过在应用的 WEB-INF 目录中创建以下 orion-web.xml 文件来解决它:

<?xml version="1.0"?>
<orion-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/orion-web-10_0.xsd">
<web-app-class-loader search-local-classes-first="true" include-war-manifest-class-path="true"/>
<web-app/>
</orion-web-app>

不幸的是,事实证明使用 global-web-application.xml 有效,使用 orion-web.xml 没有

OC4J 版本是 10.1.3.5。

任何人都可以建议吗?

0 投票
1 回答
1709 浏览

linux - 使用 rc start 脚本启动 oc4j 和 oracle

我的几个 linux 启动脚本有问题,特别是那些启动我的 Oracle 10g 数据库和我的 oc4j 容器的脚本。

我已经使用 chkconfig 告诉 Linux 在容器之前启动数据库,但是,似乎容器在 oc4j 根本不喜欢的数据库之前启动。我可以访问我的应用程序,但是我没有数据库连接。如果我重新启动 oc4j 一切正常。

有没有一种方法可以“暂停” oc4j 的启动,直到数据库(和侦听器)都启动并准备好连接?

0 投票
1 回答
349 浏览

jsp - oc4j jstl 数据库连接问题

我有 OAS 版本 10.1.3.3 和使用 jstl 1.1 的应用程序。在 tomcat 中(它可以正常工作)在 OAS 中可以正常工作。

要使用 jstl 1.2,需要 jsp 2.1 和 servlet 2.5。OAS 10.1.3.3 是否支持此功能?我试图在网上找到这种兼容性,但无法确认。

0 投票
1 回答
757 浏览

console - Oracle 应用服务器 10.1.3

我们如何保护 OAS 管理 em 控制台而不将其暴露给外界。或者换句话说,我们如何隐藏某些页面不显示。

类似的东西应该只能由 localhost 而不是通过域名或 ip 访问。

谢谢

0 投票
1 回答
1816 浏览

eclipse - Eclipse 中 OC4J 的内存设置

我在网上看了一段时间,似乎找不到从 Eclipse 启动时增加分配给 OC4J 的内存的设置。有谁知道设置在哪里?

谢谢。

0 投票
1 回答
1402 浏览

jakarta-ee - 单个应用程序服务器实例中不同应用程序中的 EJB 本地/远程接口

假设部署了两个 EAR 的单个应用程序服务器实例。第一个 EAR 使用远程 EJB 接口从第二个 EAR 调用 EJB。

有传言说,即使调用是使用远程接口实现的,应用服务器也知道一切都在同一个 JVM 中,并在内部使用具有本地接口机制的远程接口,即它不通过 RMI 调用方法,不打开任何套接字,并且不序列化/反序列化对象。

这是真的?如果有人对 Weblogic 10.3.2 和 OC4j 10.1.3 关于此问题的行为有任何反馈,我们将不胜感激。

0 投票
2 回答
1362 浏览

java - 有人会检查以解决 OC4J 10.1.3.5 中的 UnsupportedOperationException 的第一件事是什么?

有人会检查以解决 OC4J 10.1.3.5 中的 UnsupportedOperationException 的第一件事是什么?这发生在注销期间。我们有两个相同的(从编码和类路径的角度来看)应用程序 - 一个正确注销,另一个抛出 UnsupportedOperationException。