如何使 wicket 的 1.4.9 版快速入门 Maven 原型在 Eclipse 中可用?
我使用 Eclipse 3.6 和 m2Eclipse 插件。到目前为止,我一直在使用 Wicket 的基于 Web 的快速入门,但我刚刚意识到 m2Eclipse 允许我从 Eclipse 中的原型创建 Maven 项目。
问题是 wicket-archetype-quickstart 版本是 1.4.7,但 Wicket 的最新版本是 1.4.9。是否可以将 wicket 快速入门原型的 1.4.9 版本提供给 m2eclipse?更好的是,是否有 Wicket+Spring+Hibernate(和 JPA)的原型?
提前致谢。
I'm using Eclipse 3.6 with the m2Eclipse plugin. Up until now I've been using Wicket's web based quickstart, but I just realised that m2Eclipse allows me to create Maven projects from archetypes within Eclipse.
The problem is that the wicket-archetype-quickstart is version 1.4.7, but the newest version of Wicket is 1.4.9. Is it possible to make the 1.4.9 version of the wicket quickstart archetype available to m2eclipse? And better yet, is there an archetype for Wicket+Spring+Hibernate(and JPA)?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
带有示例应用程序的 Wicket + Spring + JPA 原型(使用 Wicket 1.4.9)
调整您的 Wicket 版本,只需编辑 POM 文件的 Wicket 依赖版本即可。
为了在 Eclipse 中使用这个原型,我执行了以下操作:在命令行运行 maven,从原型生成一个项目:
Cd 进入项目目录,运行
mvn jetty_run
下载依赖项,构建,并运行该应用程序。运行 mvn eclipse:eclipse 来生成 eclipse 元数据。
在 Eclipse 中,文件|新项目 | “从现有来源”导入它。
Wicket + Spring + JPA archetype with sample application (uses Wicket 1.4.9)
To adjust your version of Wicket, just edit the POM file's Wicket depending version.
To use this archetype in Eclipse, I did the following: ran maven at the command line to generate a project from the archetype:
Cd'd into the project directory, ran
mvn jetty_run
to download dependencies, build, and run the app.Ran
mvn eclipse:eclipse
to generate eclipse metadata.In Eclipse, File| New project | "from existing source" to import it.