Com esta aula
@Component
public class Sample {
@Value("${my.name}")
public static String name;
}
Se eu tentar Sample.name
, é sempre 'nulo'. Então eu tentei isso.
public class Sample {
public static String name;
@PostConstruct
public void init(){
name = privateName;
}
@Value("${my.name}")
private String privateName;
public String getPrivateName() {
return privateName;
}
public void setPrivateName(String privateName) {
this.privateName = privateName;
}
}
Este código funciona. Sample.name
está definido corretamente. Este é um bom caminho ou não? Se não, existe algo mais bom? E como fazer isso?