-1
我想從Spring讀取文件的屬性。不過,我不斷得到NullPointerException
s。我不確定我做錯了什麼,因爲我已經在我的RestController
類中使用@Configuration
註釋完成了此操作。用Spring讀取屬性會拋出異常
@Component
@PropertySource("classpath:recaptcha.properties")
public class RecaptchaProvider {
@Value("${com.xxx.user.recaptcha.verify.secret}")
private String secret;
@Value("${com.xxx.user.recaptcha.verify.url}")
private String serviceUrl;
public RecaptchaProvider() {
//do nothing
}
public String getSecret() {
return secret;
}
public String getServiceUrl() {
return serviceUrl;
}
}
而且手機號碼類:
@Component
public class RecaptchaServiceImpl implements RecaptchaService {
@Autowired
RecaptchaProvider provider;
@Override
public boolean isCaptchaValid(String response) {
String secret = provider.getSecret(); // Nullpointer here
String serviceUrl = provider.getServiceUrl();
CaptchaValidation captchaValidator = new CaptchaValidation();
ReCaptchaVerfiyResponse result =
captchaValidator.postForCaptchaValidation(secret, response, serviceUrl);
return Boolean.valueOf(result.getSuccess());
}
}
項目設置:
和我的屬性文件中:
com.xxx.user.recaptcha.verify.url=https://www.google.com/recaptcha/api/siteverify
com.xxx.user.recaptcha.verify.secret=xxxxxxxxxxxx
除外:
java.lang.NullPointerException
at com.xxx.user.recaptcha.impl.RecaptchaServiceImpl.isCaptchaValid(RecaptchaServiceImpl.java:24)
at com.xxx.rest.user.impl.UserController.checkReCaptcha(UserController.java:135)
at com.xxx.rest.user.impl.UserController.addUser(UserController.java:87)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:221)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:136)
讓我在你的'UserController'你'新RecaptchaServiceImpl()'猜。另外'@ PropertySource'應該放在'@ Configuration'類上,否則它不會有太多的功能。 –
是的,我做RecaptchaServiceImpl captchaservice =新RecaptchaServiceImpl(); 返回captchaservice.isCaptchaValid(captchaResponse); – Maevy