Spring Learning notes-Using spring Java-based configuration

Source: Internet
Author: User

We need to use @component annotations to define a configuration class, in which we define the bean in the configuration class:

 Packagecom.moonlit.myspring;ImportOrg.springframework.context.annotation.Bean;Importorg.springframework.context.annotation.Configuration; @Configuration Public classMoonlitconfig {@Bean PublicWeapon Halberd () {return Newhalberd (); } @Bean PublicHero Guanyu () {guanyu Gy=NewGuanyu ();        Gy.setweapon (Halberd ()); returnGy; }}

The Guanyu classes here are as follows:

 Packagecom.moonlit.myspring; Public classGuanyuImplementsHero {Privateweapon Weapon;  Public voidperform () {System.out.println ("Guan Yu pick up his weapon.");    Weapon.attack (); }     PublicWeapon Getweapon () {returnweapon; }     Public voidSetweapon (Weapon weapon) { This. Weapon =weapon; }}

Then we can use this @bean annotation-based bean, and the following test class is used to demonstrate the effect:

 Package Com.moonlit.practice; Import Com.moonlit.myspring.Hero; Import Com.moonlit.myspring.MoonlitConfig;  Public class testpractive {    publicstaticvoid  main (string[] args) {         New  moonlitconfig (). Guanyu ();        Hero.perform ();    }}

The output effect is as follows:

Guan Yu pick up his weapon.halberd is attacking!!!

Spring Learning notes-Using spring Java-based configuration

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.