Scaffolding in wickets

is there any working, supported and supported scaffolding solution for Wicket 1.5? I know

  • Wicketopia is in two different places sourceforge and github but it still targets wickets 1.4, brings its own wicket and mails to mailing lists have not elicited any response for months.
  • Wicket Rad but it hasn't updated in 18 months
  • Wicket CRUD , which looks more like a tutorial or proof of concept than a working solution.

I can't believe there isn't a solution to edit domain objects (choosing objects for OneToOne and add-remove-controls for lists would be a big plus). Writing editors is not the most fun part of developing an app from the gate, and making them look the same tedious, so I'm looking for suggestions to automate this ...

+3


source to share


3 answers


You can look at Apache Isis for a domain driven approach. Perhaps you can find the CRUD structure on the WickI WickI related projects page . Perhaps databinder is an option.



At my company, we created our own CRUD infrastructure. While it wasn't easy, it gives you an edge and allows you to do things your way.

+3


source


I spend a few quarters with wicket-webbeans ( WWB ). It is not fully ported to wicket 1.5 (but some work was done in 1.5 branches).



I think a project like this (automagicaly bean editor for Wicket 1.5) is very necessary

0


source


There is a simple CRUD web application for hotel booking based on Wicket 6.0, Ujorm 1.40 and Spring 3.2. The GUI is built on preview tables and form dialog boxes, see the following persistent class model:

enter image description here

0


source







All Articles