Здравствуйте, вопрос собственно выше.
при попытке передать json и записать в pojo получаю null
У меня есть два класса и один контроллер:
@Data
@Component
@AllArgsConstructor
@NoArgsConstructor
@Getter
@Setter
public class Activity1 {
private String NAME;
private String code;
private String NOTE;
}
@Data
@Getter
@Setter
@Component
public class TestDto {
private Activity1 ACTIVITY;
}
@RestController
@RequiredArgsConstructor
public class BaseController {
@PostMapping("/save")
public ResponseEntity<List<TestDto>> save(@RequestBody List<TestDto> testDtos){
return ResponseEntity.ok().body(testDtos);
}
}