application.properties配置變數 java

刘贵庆發表於2024-09-22
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
 
public class MyComponent {
 
    @Value("${my.property}")
    private String myProperty;
 
    public String getMyProperty() {
        return myProperty;
    }
}
#在application.properties檔案中,你可以定義my.property:


my.property=Hello, World!

相關文章