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.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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:
run As > Maven Clean, thenrun As > Maven Install. This will build your Wicket project.Base Directory, inGoalstype injetty:run. Now, you will have jetty running your application atlocalhost:8080/yourAppNameThe Jetty run configuration will be available in
run Asmenu for future usage.This is pretty much it!