Re: how to access spring beans from inside a custom validator

2010-11-01 Thread Eduard Neuwirt
Jake, does your struts.xml contain the both entries? Eduard Am 01.11.2010 10:50, schrieb Jake Vang: Eduard, I tried that. I thought spring would inject the field, but I keep getting a NullPointer (after I get the field and try to use it). Are there any other configurations that I need in w

Re: how to access spring beans from inside a custom validator

2010-11-01 Thread Jake Vang
Eduard, I tried that. I thought spring would inject the field, but I keep getting a NullPointer (after I get the field and try to use it). Are there any other configurations that I need in web.xml? Right now, among other things, I have the listener org.springframework.web.context.ContextLoaderList

Re: how to access spring beans from inside a custom validator

2010-11-01 Thread Eduard Neuwirt
Hello Jake, It is simple. Use struts/spring plug in. Declare your bean within your validator and let spring inject your validator. That's all Regards Eduard P.S.: Do not forget to define the corresponding setter method for injection Am 01.11.2010 08:37, schrieb Jake Vang: i have a custom fi

how to access spring beans from inside a custom validator

2010-11-01 Thread Jake Vang
i have a custom field validator that extends FieldValidatorSupport. inside this class, i need to access some beans as defined in applicationContext.xml by Spring. how do i access the spring managed beans? any help is appreciated.