Re: [Wicket-user] @EJB injection...

2007-07-25 Thread Igor Vaynberg
it might not have had a release http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-javaee -igor On 7/25/07, Patrick Angeles [EMAIL PROTECTED] wrote: I believe someone contributed code to allow for @EJB injection into Wicket pages, and this wound up in Wicket Stuff... Is

Re: [Wicket-user] @EJB Injection

2006-06-27 Thread Igor Vaynberg
you need to recreate what we do for spring with @SpringBean annotation but instead use the @EJB annotationif you are using 1.2 see wicket-spring and how it creates proxies. see AnnotSpringInjector and AnnotSpringWebApplication what it will boil down to is for you to create an

Re: [Wicket-user] @EJB Injection

2006-06-27 Thread Vincent Jenks
Excellent, thanks Igor! On 6/27/06, Igor Vaynberg [EMAIL PROTECTED] wrote: you need to recreate what we do for spring with @SpringBean annotation but instead use the @EJB annotation if you are using 1.2 see wicket-spring and how it creates proxies. see AnnotSpringInjector and