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... >

[Wicket-user] @EJB injection...

2007-07-25 Thread Patrick Angeles
I believe someone contributed code to allow for @EJB injection into Wicket pages, and this wound up in Wicket Stuff... Is this still the case? Any way I can get Wicket Stuff from Maven? Is it compatible with 1.3.0-beta2? I've tried http://wicketstuff.org/repository and could not find the javaee

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 AnnotSpri

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 EjbProxyFieldValueFact

[Wicket-user] @EJB Injection

2006-06-27 Thread Vincent Jenks
In Java EE 5, instead of using JNDI lookups to get a stub to an EJB we'll have the ability to just inject it w/ a simple @EJB annotation. I see that JBoss will support this for Servlets & JSP in the near-future...what will be needed to support this in Wicket? Anything at all? There are a couple o