How can I begin using Wicket? [closed]

假如想象 提交于 2019-12-06 02:55:11
Nishant

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!

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!