WebLogic 的 JavaEE API

发布于 2024-11-27 16:51:57 字数 200 浏览 0 评论 0原文

有不同的服务器特定 JavaEE API 实现,例如:glassfish-javaee 或 jboss-javaee。
它们作为单独的 .jar 文件分发,并且可以使用 Maven 依赖项附加到某些项目。
有没有专门为 WebLogic AS 设计的类似东西?
我期望 weblogic.jar 文件包含所需的工件,但它看起来不是这样的。
有什么想法吗?

There are different server specific JavaEE API implementations like: glassfish-javaee or jboss-javaee.
They are distributed as a separate .jar file and could be attached to some project using Maven dependencies.
Is there something like this desinged specifically for WebLogic AS?
I expected weblogic.jar file contains requered artifacts, but it doesn't look like this.
Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别理我 2024-12-04 16:51:57

理想情况下,您希望使用 javaee-api 依赖项,而不是特定于服务器的依赖项。对于特定于服务器的内容(不是核心 EE API),您可以包含 weblogic.jar 或使用 WebLogic 实用程序来创建 WLFullClient.jar 文件。

Java EE 5:

<dependency>
    <groupId>javaee</groupId>
    <artifactId>javaee-api</artifactId>
    <version>5</version>
    <scope>provided</scope>
</dependency>

Java EE 6:

<dependency>
  <groupId>javax</groupId>
  <artifactId>javaee-api</artifactId>
  <version>6.0</version>
  <scope>provided</scope>
</dependency>

更多信息请参见:http://www.xinotes.org/笔记/note/591/

更新:
我建议阅读有关客户端 JAR 文件的信息: http: //download.oracle.com/docs/cd/E12840_01/wls/docs103/client/basics.html

您可能还对 WebLogic Maven 插件感兴趣。以下是介绍如何使用它的 YouTube 视频:http://www.youtube.com/watch? v=GcwcGtz0dyc

...以及此处使用 Maven 的示例项目:https://www.samplecode.oracle.com/sf/projects/oracle-parcel-svc/

Ideally you would want to use the javaee-api dependency, not something that is server specific. For the things that are server-specific (not core EE API) then you could include weblogic.jar or use the utilities with WebLogic to create the WLFullClient.jar file.

Java EE 5:

<dependency>
    <groupId>javaee</groupId>
    <artifactId>javaee-api</artifactId>
    <version>5</version>
    <scope>provided</scope>
</dependency>

Java EE 6:

<dependency>
  <groupId>javax</groupId>
  <artifactId>javaee-api</artifactId>
  <version>6.0</version>
  <scope>provided</scope>
</dependency>

More info here: http://www.xinotes.org/notes/note/591/

UPDATE:
I would suggest reading this information about client JAR files: http://download.oracle.com/docs/cd/E12840_01/wls/docs103/client/basics.html

You may also be interested in the WebLogic Maven Plugin. Here is a YouTube video describing how to use it: http://www.youtube.com/watch?v=GcwcGtz0dyc

...and the example project with Maven here: https://www.samplecode.oracle.com/sf/projects/oracle-parcel-svc/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文