Are there any widely adopted, currently maintained Eclipse plugins for working with Apache Wicket projects? If so, where are they? Who maintains them? What do they do?
|
The standard used to be wicket bench, but it has been discontinued and you can find a fork named stump. I don't know stump, but wicket bench mainly had a refactoring listener (if you rename a java class, the HTML is also renamed) and some wizards (create a Panel with associated markup etc). I haven't used bench in years, as it was rather buggy in newer eclipse versions. But I have made pretty good experiences using a custom set of eclipse HTML templates that you can download from this location: http://www.wicket-praxis.de/blog/wp-content/uploads/2010/01/wicket-template.xml (German) description on this page: http://www.wicket-praxis.de/blog/download/ You can install these as HTML Code Templates in Eclipse:
and that will enable wicket-specific template shortcuts in the HTML editor. |
|||
|
|
|
Take a look at http://code.google.com/p/qwickie/ |
|||||
|
|
Not right on the question, but not completely off it, either. I have released a tool that can be used as an eclipse save action. It generates Java interfaces with constants for ids in wicket templates and resource keys from translation files, so that you don't need to use strings for component ids and translation keys, but can use these generated constants. It can be integrated in eclipse quite simply as an annotation processor. After a save of a component the interfaces will be generated and built. See its readme: https://github.com/neurolabs/wicket-id-bindings-generator I'm maintaining it on github (feel free to fork/contribute) and am using it in all of my wicket projects. |
|||
|
|
|
It's too bad you don't use IntelliJ IDEA. It has an excellent plugin called WicketForge. |
|||||||
|