焊接原型与缝锻
我正在使用 Seam 3 构建一个新项目。我不明白 Weld 原型和 Seam Forge 之间有什么区别。它们都帮助我们构建一个简单的项目模板来开始。
I'm building a new project using Seam 3. I don't understand what the difference is between Weld archetype and Seam Forge. Both of them help us to build a simple project template to start with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Seam Forge 是一个类似于 Seam 2 中的 seam-gen 的工具。
Seam Forge 是一个控制台,您可以在其中设置和生成项目,您可以选择库版本、JPA 实现等
你可以创建类,向它们添加字段,创建 CRUD 等等
焊接原型是一个“简单的应用程序”(配置),带有 pom、配置文件和示例类,准备开发你的应用程序
我认为 Seam Forge 是更强大的工具,并且具有许多功能帮助快速开发您的应用程序。
Seam Forge is a tool similar to seam-gen from Seam 2.
Seam Forge is a console where you can setup and generate your project, you can choose a version of libraries, JPA implementation etc
you can create classes, add fields to them, create CRUD and many more
weld archetype is a 'simple application' (configuration) with pom, configuration files and example classes ready to develop your application
I think Seam Forge is stronger tool and have many features helping rapidly develop your application.
从长远来看,Forge 将有助于使用额外的插件来增量增强您的项目,如下所示: https://docs.jboss.org/author/display/FORGE/Installing+new+Plugins
这基本上可以让您用任何可以想象到的东西来扩展您的项目!
In the long run, Forge will be useful for incremental enhancement of your project using extra plugins, like so: https://docs.jboss.org/author/display/FORGE/Installing+new+Plugins
This basically lets you extend your project with anything that can be imagined!