我如何开始使用 Wicket?

发布于 2024-10-19 06:03:33 字数 75 浏览 2 评论 0原文

我按照 Wicket 站点的规则安装了 Wicket。如何在 IDE Eclipse 中运行 Wicket?我已经添加了所有必要的插件。

I installed Wicket per the rules of the Wicket site. How do I run Wicket within my IDE, Eclipse? I have added all the necessary plug-ins.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

错爱 2024-10-26 06:03:33

我希望您已按照此处的快速入门指南进行配置: http://wicket.apache.org/ start/quickstart.html

Eclipse 也有一个配置设置。现在,如果您的项目位于 Eclipse 中,并且安装了 m2eclipse 插件(Maven-2 for Eclipse)。请按照以下步骤操作:

  1. 右键单击​​ Wicket 项目文件夹,选择 run As > Maven Clean,然后运行为> Maven 安装。这将构建您的 Wicket 项目。
  2. 要启动 Jetty,您需要执行更多步骤
    • 右键单击 wicket 项目文件夹,“运行为”>运行配置..`
    • 创建新的 Maven 构建配置,指定名称,选择 wicket 项目目录作为 Base Directory,在 Goals 中输入 jetty:run。现在,您将让 jetty 在 localhost:8080/yourAppName
    • 上运行您的应用程序

Jetty 运行配置将在 run As 菜单中提供,以供将来使用。

这差不多了!

I expect you have configured as per quick-start guide here: http://wicket.apache.org/start/quickstart.html

There is a configuration setting for Eclipse as well. Now, if you have your project in Eclipse and you have m2eclipse plugin (Maven-2 for Eclipse) installed. Follow the steps below:

  1. Right click on the Wicket project folder, select run As > Maven Clean, then run As > Maven Install. This will build your Wicket project.
  2. TO start Jetty, you will need to do some more steps
    • Right click on wicket project folder, 'run As > run configurations..`
    • Create new Maven Build configuration, give a name, select wicket projects directory as Base Directory, in Goals type in jetty:run. Now, you will have jetty running your application at localhost:8080/yourAppName

The Jetty run configuration will be available in run As menu for future usage.

This is pretty much it!

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