Re: T5: Spring Integration Issue

2007-04-24 Thread Matt Welch
As I mentioned, my Spring configurations is confirmed as working. I was using 5.0.3 which I assumed was the latest as it's the one mentioned on the first page as the most recent SNAPSHOT. What's the best way to keep track of the latest available SNAPSHOT? A big "Thanks" to everyone who took the t

Re: T5: Spring Integration Issue

2007-04-24 Thread SergeEby
Hi, There is a new syntax with 5.0.4-SNAPSHOT and the URL http://tapestry.apache.org/tapestry5/tapestry-spring/ was updated a while ago. There is no more @Inject("spring:yourBean"). It works fine for me. Here is an excerpt: public class UserView { @Inject @SpringBean("userManager") pr

Re: T5: Spring Integration Issue

2007-04-24 Thread 蝈蝈龙
If you develop base on Tapestry 5.0.3 Please use @Inject("Spring:groupRepository") Instead of @Inject @SpringBean("groupRepository") 'groupRepository' is just your the bean id defined in your spring's configuration file. This is my first to answer question in mail list 2007/4/24, Mat

Re: T5: Spring Integration Issue

2007-04-23 Thread Massimo Lusetti
On 4/24/07, Matt Welch <[EMAIL PROTECTED]> wrote: I'm sure I must be doing something wrong, but for lthe life of me, I can't figure out what it is. I'm not trying anything complicated. I've confirmed that my Spring beans are accessible in my webapp so I know the Spring part of my configuration

Re: T5: Spring Integration Issue

2007-04-23 Thread 蝈蝈龙
If you develop base on Tapestry 5.0.3 Please use @Inject("Spring:groupRepository") Instead of @Inject @SpringBean("groupRepository") 'groupRepository' is just your the bean id defined in your spring's configuration file. This is my first to answer question in mail list . I have never

Re: T5: Spring Integration Issue

2007-04-23 Thread Nick Westgate
Hmm, I'm not sure which way the docs are out of sync - future or past. http://tapestry.apache.org/tapestry5/tapestry-spring/ You'll see further down the page after the example it mentions "Spring:UserDAO". That's what I'm using with 5.0.3 SNAPSHOT and it works. Try @Inject("spring:groupRepos

T5: Spring Integration Issue

2007-04-23 Thread Matt Welch
I'm sure I must be doing something wrong, but for lthe life of me, I can't figure out what it is. I'm not trying anything complicated. I've confirmed that my Spring beans are accessible in my webapp so I know the Spring part of my configuration is correct. Here's how I'm trying to inject the Spri