-1

Spring でファイルからプロパティを読み込もうとしています。しかし、私は常に NullPointerExceptionsを取得しています。RestControllerクラスで@Configurationアノテーションを使用してすでにこれを行っているため、何が間違っているのかわかりません。

@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)
4

1 に答える 1

0

M.Deinum「推測」のおかげで問題が解決しました。ビーンとコンポーネントを混ぜたことに気づかず、「新しい」が春のlfcを台無しにすることを忘れていました

今、それはこのように見えます

@Component
public class RecaptchaProvider {

  private String secret;

  private String serviceUrl;


  public RecaptchaProvider(String secret, String serviceUrl) {
    this.secret = secret;
    this.serviceUrl = serviceUrl;
  }

  public String getSecret() {
    return secret;
  }

  public String getServiceUrl() {
    return serviceUrl;
  }
}

プロパティプロバイダー

@Configuration
@PropertySource("classpath:recaptcha.properties")
public class RecaptchaConfig {

  @Value("${com.xxx.user.recaptcha.verify.secret}")
  private String secret;

  @Value("${com.xxx.user.recaptcha.verify.url}")
  private String serviceUrl;

  @Bean
  public RecaptchaProvider getRecaptchaConfig() {
    return new RecaptchaProvider(secret,serviceUrl);
  }
}

サービス

  @Autowired
  RecaptchaConfig config;

  @Override
  public boolean isCaptchaValid(String response) {
    RecaptchaProvider provider = config.getRecaptchaConfig();
    String secret = provider.getSecret();
      String serviceUrl = provider.getServiceUrl();
      CaptchaValidation captchaValidator = new CaptchaValidation();
      ReCaptchaVerfiyResponse result =
          captchaValidator.postForCaptchaValidation(secret, response, serviceUrl);

      return Boolean.valueOf(result.getSuccess());
  }
}

そして最後に、コントローラーのメソッド

  @Autowired
  protected RecaptchaServiceImpl recaptchaService;

  private boolean checkReCaptcha(String captchaResponse){
    return recaptchaService.isCaptchaValid(captchaResponse);
  }
于 2016-11-23T14:57:01.723 に答える