Re: wicket + autowired annotation

2013-09-27 Thread dan123
Thanks to everybody for help. Paul Bors wrote > As far as I can tell you the Spring native annotations work within the > implementation of a bean you already injected in your wicket component. > First crate a service for yourself and inject it where needed in Wicket > via > @SpringBean. Then insi

wicket + autowired annotation

2013-09-26 Thread dan123
Hi, I have simple project created from Quickstart, and I have deffined in springContext.xml bean named "dbAccess". When I use: *@SpringBean private DbAccess dbAccess;* in *class HomePage extends WebPage*. It works, it creates bean and in constructor "HomePage" class I can access to dbAccess. But w