[Spring] Autowire

Source: Internet
Author: User

1. Autowire can allow you to inject dependency implicitly. (It internally uses setter or constructor injection)

2. Advantages: Reduce the amount of code.

3. Cons: cannot be controlled by the programmer. cannot be used on basic data types and string values.

4. Autowiring Modes Mode

1) No It is the default autowiring mode. It means no autowiring bydefault.
2) ByName The byname mode injects the object dependency according to name of the bean. In the such case, the property name and bean name must is same. It internally calls setter method.
3) Bytype The Bytype mode injects the object dependency according to type. So property name and bean name can different. It internally calls setter method.
4) Constructor The constructor mode injects the dependency by calling the constructor of the class. It calls the constructor has large number of parameters.
5) AutoDetect It is deprecated since Spring 3.

ByName and Bytype in another piece of essay.

[Spring] Autowire

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.