弹簧动态输入

时间:2019-03-14 06:26:36

标签: java xml spring

我是spring的新手,所以我尝试使用spring开发很少的应用程序。正如我在春季学到的那样,使用xml文件为属性提供值。我想在运行时中给出以下Java中的值。

public class Main {

public static void main(String[] args) {
    Scanner num = new Scanner(System.in);
    int number = num.nextInt(); //dynamic value 
    }
 }

如何在春季实现此目标。尝试通过Google查找。但无法解决。

1 个答案:

答案 0 :(得分:0)

1)请将所有查询放入属性文件
2)给属性文件位置

@Value( "${Property which is exists in properties file.}" )
private String yourVaraibleName;

3)注入带有@Value批注的属性

RHEL 7