How Spring Initializes a generic class instance

Source: Internet
Author: User

In Java for generic types, such as simple class definitions

Class Processor<t> {}

If you want to specify a specific type when initializing directly, we can write the

processor<string> Processor = new processor<> (); //java 7 and later

spring initialization of a basic generic

If we're going to initialize this class with the Spring container, like adding a @Named annotation to the class above

@Named
Class Processor<t> {
}

This time we passedbeanFactory.getBean(Processor.class)What kind of an instance do you get? How does Spring know what specific type to specify? Very simply, any uncertain situation is an Object. So the container gets theProcessorInstance is constructed from the following code.

Processor Processor = new Processor (); More precisely, processor<object> Processor = new processor<> ();

further , how does Spring respond to generic definitions with upper bound constraints? Like Read full text >>


How Spring Initializes a generic class instance

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.