Z tą klasą
@Component
public class Sample {
@Value("${my.name}")
public static String name;
}
Jeśli spróbuję Sample.name
, zawsze jest to „zerowe”. Więc spróbowałem tego.
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;
}
}
Ten kod działa. Sample.name
jest prawidłowo ustawiony. Czy to dobry sposób, czy nie? Jeśli nie, czy jest coś lepszego? A jak to zrobić?