@value给静态属性赋值
时间: 2023-07-20 22:38:32 浏览: 82
属性赋值@Value1
在Java中,可以使用`@value`注解来为静态属性赋值。例如:
```
public class Example {
@Value("42")
private static int answer;
public static void main(String[] args) {
System.out.println(answer); // 输出 42
}
}
```
在上面的例子中,使用`@Value("42")`为静态属性`answer`赋值为`42`。在`main`方法中,可以直接访问`answer`属性并输出它的值。需要注意的是,使用`@Value`注解需要在类中引入`org.springframework.beans.factory.annotation.Value`类。
阅读全文