Spring static Property Injection

Source: Internet
Author: User

Today, when you encounter a tool class, you need to inject a property statically, in the following way:

The first step: Set and Get methods of attributes do not add static
 PackageCn.com.chinalife.ebusiness.common.util;ImportCn.com.chinalife.ebusiness.sys.interfacePortal.businessInterface.service.facade.InterfaceInfoService; Public classEpolicydownload {Private StaticInterfaceinfoservice Interfaceinfoservice;  PublicInterfaceinfoservice Getinterfaceinfoservice () {returnInterfaceinfoservice; }     Public  voidSetinterfaceinfoservice (Interfaceinfoservice interfaceinfoservice) {//Note: Do not add staticEpolicydownload.interfaceinfoservice =Interfaceinfoservice; }    }

Step Two: Configure the bean to be lazy loaded in spring's configuration file

<bean id= "Epolicydownload" class= "cn.com.chinalife.ebusiness.common.util.EPolicyDownload" lazy-init= "false " ></bean>
Then, after the service starts, the static properties are initialized.

Spring static Property injection

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.