Inject static fields into a class in a spring project

Source: Internet
Author: User

Sometimes the properties of a configuration file need to be injected into a static field of a class in a spring project

Example: File Upload

// file upload specified upload location // Resource-dev.properties has the following parameters #uploadUPLOAD_PATH=d:\\home\\imagesstatic_url=http://127.0.0.1/images/upload/ 

If you want to use it directly in a class, you can get the static field of the constant class by defining the

@Component @propertysource ("classpath:dev/resource-dev.properties") Public classConstantsfilename {//Upload Constants     Public StaticString Upload_path;  Public StaticString Static_url;  PublicString Getuploadpath () {returnUpload_path; }//remove the static of the Set method@Value ("${upload_path}")     Public voidSetuploadpath (String uploadpath) {Upload_path=Uploadpath; }     PublicString Getstaticurl () {returnStatic_url; }//remove the static of the Set method@Value ("${static_url}")     Public voidSetstaticurl (String staticurl) {Static_url=Staticurl; }}

At this point, you can use Constantsfilename.static_url and Constantsfilename.upload_path directly in your class.

Inject static fields into a class in a spring project

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.