Swing 桌面应用程序使用哪种 Maven2 原型?
我今天想构建一个小型 Swing 应用程序,并使用 maven2 来构建/测试生命周期。
但我不知道应该选择哪种原型来创建项目。有可用于桌面应用程序的东西吗?或者我应该从简单原型开始(交互式设置中没有#3)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会选择简单的原型或根本没有原型。也许是 Maven 快速入门原型。
Swing 是 Java 的一部分(至少在较新的版本中)。我不知道有任何针对 Swing 桌面应用程序的原型。
之前的一些帖子:
Maven2 & Swing 项目:构建和构建运行 swing 应用程序
如何使用 maven 创建 swing 应用程序?
I would choose the simple or no archetype at all. Perhaps the Maven Quickstart Archetype.
Swing is part of Java (at least in more recent versions). I am not aware of any archetype that is targeted at Swing desktop applications.
Some previous posts:
Maven2 & Swing projects: Build & run swing application
How to create a swing application using maven?
Quickstart Maven 原型运行良好。它生成对 Swing 和命令行应用程序有用的最小结构。
The Quickstart Maven archetype works well. It produces a minimal structure useful for Swing and command line applications.
我在我创建的每个小 Swing 项目上创建了相同的样板,因此它们可以具有相同的外观和感觉,因此我创建了一个满足我的需求的样板...由于某些资产是专门为我设计的,因此您可能必须更改它们,但我发现这是一个很好的起点:
它托管在 github 上
I was creating the same boilerplate on every little swing project I was creating, so they could have the same look and feel, so I created one that suffices my needs... As some assets are destined specifically to me, you would probably have to change them, but I find that a good starting point:
It is hosted on github