I have a Spring Roo project and here is what's occuring:
1. I have a Service with Autowired dependencies
2. The Service is also annotated to be a Webservice by CXF
I have a breakpoint in the constructor of the service, as well as a setter method for one of the dependencies. During Spring init, the constructor is called twice, however the setter method is called once. I also wrote down the reference id for both instances.
When I call my webservice, I get back an instance where dependencies are null. I am not sure what's up.
The code is very basic, has anyone experiences something like this?
Thanks


Reply With Quote
