> But my injection of the WebApplicationContext is not in a page but in
> another class. Is it a problem ?
I think it will be a problem.
I believe Tapestry will only handle those classes in the package you defined
in tapestry.app-package in web.xml.
You could try to move it to see how things goin
Yes, i've set this configuration.
But my injection of the WebApplicationContext is not in a page but in
another class. Is it a problem ?
Stephane
Ezra Epstein a écrit :
> And your web.xml file has:
>
>
>
> org.springframework.web.context.ContextLoaderListener
>
>
> And if the app
And your web.xml file has:
org.springframework.web.context.ContextLoaderListener
And if the application context .xml files aren't in the standard place and
named the standard way you've also included:
contextConfigLocation
?
Steph <[EMAIL PROTECTED]
I've tried this but my WebApplicationContext is null ...
Stephane
SergeEby a écrit :
> Hi,
>
> Just import and inject the WAC in your page:
>
> import org.springframework.web.context.WebApplicationContext;
>
> class Foo {
>
> ...
> @Inject
> private WebApplicationContext wac;
>
> ...
> }
>
>
Hi,
Just import and inject the WAC in your page:
import org.springframework.web.context.WebApplicationContext;
class Foo {
...
@Inject
private WebApplicationContext wac;
...
}
/Serge
cyrille37 wrote:
>
> Fidel Chavarria a écrit :
>> Hi
>> I think this willhelp you,
>> http://tapest
Fidel Chavarria a écrit :
Hi
I think this willhelp you,
http://tapestry.apache.org/tapestry5/tapestry-spring/
Thanks,
but if you had read my mail, I should see that I'm talked about this page.
In this page in "Limitations" chapter it is writte that we can't inject
Spring session bean but we
Hi
I think this willhelp you,
http://tapestry.apache.org/tapestry5/tapestry-spring/
cyrille37 wrote:
>
> Hi,
>
> In the T5 tapestry-spring documentation it is writed to don't use other
> Spring beans than Singleton ones.
> Inject the WebApplicationContext instead.
> http://tapestry.apache.