0

I am looking for a start point for my project I want to start a project containing

  1. wicket 1.6.6

  2. integration to Spring

  3. simple log in page (no a must)

do you know about one which will work with 1.6.6 (all the examples are 1.5 and under) and without JPA or any other built in CRUD mechanism

VLAZ
  • 26,331
  • 9
  • 49
  • 67
yoav.str
  • 1,547
  • 6
  • 33
  • 73

1 Answers1

1

my problem was using

  addComponentInstantiationListener(new SpringComponentInjector(this));

when i am using 1.6.6 now i am using

  getComponentInstantiationListeners().add(new SpringComponentInjector(this));

10x to all that looked for anwser ...

yoav.str
  • 1,547
  • 6
  • 33
  • 73