How can I start using Wicket?

I installed Wicket in accordance with the rules of the Wicket website. How to run Wicket in my IDE, Eclipse? I added all the necessary plugins.

+3
source share
1 answer

I expect you to configure according to the quick start guide here: http://wicket.apache.org/start/quickstart.html

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

  • Right-click on the Wicket project folder, select run As > Maven Clean, then run As > Maven Install. This will create your Wicket project.
  • Jetty,
    • , " ".
    • Maven Build, , Base Directory, Goals jetty:run. , localhost:8080/yourAppName

Jetty run As .

!

+8

Source: https://habr.com/ru/post/1794759/


All Articles