I want to autowire a bean partially - that is, I want some args to be autowired but other to be explicitly set. For example:
public MyClient(Service svc, boolean b)
In the case of this constructor, I would like to specify in my xml the value for b, but have svc autowired. Is that possible?
Thanks, Lowell