WebLogic 的 JavaEE API
有不同的服务器特定 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
理想情况下,您希望使用 javaee-api 依赖项,而不是特定于服务器的依赖项。对于特定于服务器的内容(不是核心 EE API),您可以包含 weblogic.jar 或使用 WebLogic 实用程序来创建 WLFullClient.jar 文件。
Java EE 5:
Java EE 6:
更多信息请参见: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:
Java EE 6:
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/