How will spring.xml treat a bean that is declared in it without any initializing values. ie, no properties are set for the beans in spring.xml for that specific bean id.
1) Will the spring container be able to create the bean?
2) If I have 2 beans(id= beanA and beanB) declared in spring.xml without any initialising values for either bean, would it be possible to inject say beanB into beanA. What is the equivalent spring.xml or annotations for the same.