使用 Maven 从头开始启动 Seam 3 项目
我想使用 Maven 从头开始编写 Seam 3 项目,并将其配置为可部署到 Glassfish 3.1 和 JBoss 6 或 7。
任何解释我的 pom.xml
文件外观的参考资料或教程就像我不想使用像 Seam Forge 这样的东西来为我生成它?
I want to start writing a Seam 3 project from scratch using Maven and configure it to be deployable to both of Glassfish 3.1 and JBoss 6 or 7.
Any references or tutorials explaining how my pom.xml
file should look like if I don't want to use something like Seam Forge to generate it for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您使用 Archtype 来开始,然后根据您的特定需求对其进行自定义。 Weld Achetype 是很好的起点,因为如果 Weld 正常工作,只需添加 Seam 3 模块依赖项和 IIRC,Archetype POM 中还预先配置了 Glassfish 目标。
您可以在此处找到一些Archtype,
请注意,您必须修改依赖项版本在 POM 中,因为他们使用旧版本,但其他一切都应该工作正常。
I would suggest you use an Archtype to get started and then customize it to your specific needs. The Weld Achetypes are good starting points since if Weld is working it is just a matter of adding the Seam 3 module dependencies and IIRC there are also Glassfish targets preconfigugred in the Archetype POMs.
You can find a few Archtypes here
Mind that you will have to modify the dependency versions in the POM since they use old versions but everything else should work fine.
我认为 www.seamframework.org 是一个很好的起点。
您还可以查看 Seam 3 插件的源代码来了解 pom 文件的外观。
I think www.seamframework.org is a great place to start.
You can also look at the source code of the Seam 3 plugins to get a grip on how the pom file looks like.