I have a composite component with a component class:
@FacesComponent("myComponent") // not really necessary I think because I have declared it in faces-config.xml
public class UserHelpPopOver extends UINamingContainer {
@Autowired
private MyBean myTemplate;
// omitted code
}
How can I get Spring to auto inject this bean? :) It is null when I debug it all the time.