ioc « Annotation « Spring Q&A





1. Autowire Annotation in Spring without using Component Scanning    stackoverflow.com

Is it possible to autowire beans using the @Autowired annotation without using component scanning?

2. spring 3 Dependency injection( IoC) with annotation    stackoverflow.com

@Named("loginDetailsService")
public class LoginDetailsServiceImpl implements LoginDetailsService {

    @Inject
    @Named("loginDetailsDAO")
    private LoginDetailsDAO loginDetailsDAO;

    public List<UserLogin> loginDetails(UserLogin login) {
    ...

3. Basic Questions about IOC - Spring 2.5 Annotation Config (Ch 3)    forum.springsource.org

Basic Questions about IOC - Spring 2.5 Annotation Config (Ch 3) Re section 3.11 of the manual (annotation based IOC) I have questions that are not answered in the manual section ...

4. Need example using @Resource (IoC with Annotations)    forum.springsource.org

Does anyone have an end to end example for using the @Resource annotation? I can not seem to get it to work and I have looked over all the documentation. What ...