[Spring / error] NullPointerException 에러 수정
·
Framework & Library/Spring
로스트아크 API를 이용한 기능 구현중 똑같은 기능을 하는 서비스 메서드를 구축했는데 유독 한쪽에서만 에러가 발생 @Controller @RequiredArgsConstructor public class SuppressionController { private static SuppressionService suppressionService; private static MarketApiService marketApiService; @GetMapping("/api/suppression") public String CallSuppression(Model model) { JSONArray result = marketApiService.CallMarketCategories(50000); //model.addAtt..