如何使 wicket 的 1.4.9 版快速入门 Maven 原型在 Eclipse 中可用?

发布于 2024-09-13 02:50:08 字数 292 浏览 24 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耀眼的星火 2024-09-20 02:50:08

带有示例应用程序的 Wicket + Spring + JPA 原型(使用 Wicket 1.4.9)

调整您的 Wicket 版本,只需编辑 POM 文件的 Wicket 依赖版本即可。

为了在 Eclipse 中使用这个原型,我执行了以下操作:在命令行运行 maven,从原型生成一个项目:

    mvn archetype:generate -B  \ 
   -DarchetypeCatalog=http://legup.googlecode.com/svn/repo/archetype-catalog.xml \
   -DarchetypeArtifactId=wicket-spring-jpa-archetype \
   -DarchetypeGroupId=com.jweekend -DarchetypeVersion=0.8.3 \
   -DgroupId=com.mycompany -DartifactId=mycompany \
   -Dversion=1.0-SNAPSHOT -Dpackage=com.mycompany

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:

    mvn archetype:generate -B  \ 
   -DarchetypeCatalog=http://legup.googlecode.com/svn/repo/archetype-catalog.xml \
   -DarchetypeArtifactId=wicket-spring-jpa-archetype \
   -DarchetypeGroupId=com.jweekend -DarchetypeVersion=0.8.3 \
   -DgroupId=com.mycompany -DartifactId=mycompany \
   -Dversion=1.0-SNAPSHOT -Dpackage=com.mycompany

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文