是否可以@Value
从另一个变量设置
例如。
System properties : firstvariable=hello ,secondvariable=world
@Value(#{systemProperties['firstvariable'])
String var1;
现在我想var2
必须连接var1
并依赖它,比如
@Value( var1 + #{systemProperties['secondvariable']
String var2;
public void message(){ System.out.printlng("Message : " + var2 );