Springmvc injecting values to static variables by @value ()

Source: Internet
Author: User

Spring does not allow/does not support injecting values into static variables, such as:

@Value ("${es. Cluster_Name} ")
private static String cluster_name;

The cluster_name obtained in the method will get null

Solve
Fortunately, Spring supports set method injection, and we can inject static variables with non-static setter methods. Such as:

private static String cluster_name;

@Value ("${es. Cluster_Name} ")
public void Setclustername (String clustername) {
Cluster_Name = clustername;
}

@Value must be modified on the method, and the set method cannot have static

So we can get the value.

Springmvc injecting values to static variables by @value ()

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.