int Activation and int ForgotPassword works good but string variables return null i need static class for AppSettings
@PropertySource("classpath:appSettings.properties")
public class AppSettings {
@Value("${Activation}")
private static int Activation;
@Value("${ForgotPassword}")
private static int ForgotPassword;
@Value("${CryptoSplit}")
private static String CryptoSplit;
@Value("${CryptoKey}")
private static String CryptoKey;
public static String getCryptoSplit() {
return CryptoSplit;
}
public static String getCryptoKey() {
return CryptoKey;
}
public static int getActivation() {
return Activation;
}
public static int getForgotPassword() {
return ForgotPassword;
}
}
.properties
Activation=0
ForgotPassword=1
CryptoSplit=:OSK:
CryptoKey=TheBestSecretKey
Spring does not support
@Value
injection on static fields.Are you sure that you definitely require a "static class for AppSettings"? I suspect that might represent a misunderstanding of how Spring singletons work.
If, however, you have a genuine need for a "static class for AppSettings" then you can achieve this as follows: