使用 Glassfish 的 EJB 客户端
我正在使用 Glassfish 3 学习 EJB 3。IDE 是 Eclipse。我想在容器之外编写一个独立的客户端测试应用程序。我需要javaee.jar,appserv-rt.jar来编译。所以我从 Glassfish lib 目录复制这些 jar,然后我意识到所有文件只包含 maven pom 文件。
问题
- 在哪里下载 javaee.jar、appserv-rt.jar 及其实现?
- 如何使用maven下载呢?
- 哪里可以下载 ejb maven 工件?
I am learning EJB 3 with Glassfish 3. IDE is Eclipse. I want to write a standalone client test application outside of container. I need javaee.jar, appserv-rt.jar to compile. so I copy these jars from Glassfish lib dir, then I realize all files only contains maven pom file.
Questions
- where to download javaee.jar, appserv-rt.jar with implementation ?
- how to use maven to download it ?
- where to downaload ejb maven artifacts ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您已经安装了 Maven。您也在您的一些项目中使用它。那么,为什么不使用 Maven 来构建您的客户端项目呢?
您可以检查本地
maven
存储库中的实际jar
。如果您有兴趣探索 Netbeans,它附带一流的 Maven 插件,非常棒。
寻找 Maven 书籍/教程的最佳位置,Sonatype。
It sounds like you are having
Maven
installed, already. And you are also using it in some of your project. So, why not use maven to build your client project as well?You can check your local
maven
repository for actualjars
.In case you are interested in exploring Netbeans, that comes with the first class maven plugin, which is just awesome.
Best place to look for Maven books/tutorials, Sonatype.
对于 Eclipse,你只需要通过标记的地方安装 m2eclipse 插件。如果没有它,您必须从此处安装 Maven。 Maven 将解决您的其他问题。
For Eclipse you just need the plugin m2eclipse via the marked place. For usage without it you have to install Maven from here. Maven will take care of your other questions.