How can I reuse code when two different wicket applications share common functionality
I have a Wicket AuthenticatedWebApplication which has several pages and features that need to be reused in a new AuthenticatedWebApplication that I have to develop. I am using Wicket 1.4, Spring and Hibernate. Both applications will even share the same look (except for Application logo) which is now implemented in a base page. Has anyone had a similar experience? I definitely don't want to recur to copy-paste code because the common functionality implements a workflow process which can and will change. What can I do to keep my applications modular, and achieve my goal? My company does this all