Spring’s instance factory method and static factory method instance code
Spring's instance factory method and static factory method can be used to instantiate beans. Let's take a look at the relevant examples in this article.
Static factory method: directly calling the static method can return an instance of the bean
Example factory method. That is, call the factory itself, and then call the instance method of the factory to return the bean instance
beans-factory. xml
Car. Java entity class
Main. java
Operation results:
Car [brand=aodi,price=3000.0] Car [brand=audi,price=1000.0]
summary
The above is all about the spring instance factory method and static factory method instance code in this article. I hope it will be helpful to you. Interested friends can continue to refer to other related topics on this site. If there are deficiencies, please leave a message to point out. Thank you for your support!