У меня есть Country
и Language
классы сущностей, имеющие отношение один ко многим.
Ниже приведены классы сущностей:
@Entity
@Table(name = "COUNTRY")
public class Country {
@Id
@GeneratedValue
@Column(name = "COUNTRY_ID")
private Long id;
@Column(name = "COUNTRY_NAME")
private String name;
@Column(name = "COUNTRY_CODE")
private String code;
@OneToMany(mappedBy = "country")
List<Language> languages;
// getters and setters
}
класс Language
@Entity
@Table(name = "LANGUAGE")
public class Language {
@Id
@GeneratedValue
@Column(name = "LANGUAGE_ID")
private Long id;
@Column(name = "LANGUAGE_NAME")
private String name;
@ManyToOne
@JoinColumn(name = "COUNTRY_ID")
@JsonIgnore
private Country country;
//getters and setters
}
Я использую JpaRepository
для операций CRUD. Вот мой интерфейс репозитория:
@Repository
public interface ICountryRepository extends JpaRepository<Country, Long>{
// http://localhost:8081/country/search/findByName?name=India
// List<Country> findByName(@Param("name") String role);
}
И, наконец, мой контроллер покоя:
@RestController
@RequestMapping("/countries")
public class CountryRestController {
private final ICountryRepository iCountryRepository;
@Autowired
public CountryRestController(ICountryRepository iCountryRepository) {
this.iCountryRepository = iCountryRepository;
}
@GetMapping("/country/{id}")
public ResponseEntity<Country> retrieveCountryById(@PathVariable Long id) {
Optional<Country> country = iCountryRepository.findById(id);
if (!country.isPresent()) {
return ResponseEntity.noContent().build();
}
return ResponseEntity.ok(country.get());
}
}
Я пытаюсь получить сведения о стране по идентификатору, и ожидается, что языковые данные также будут заполнены в ответе JSON. Но ответ содержит пустые языки.
Ниже приведены журналы Hibernate:
2018-09-01 05:40:07.863 DEBUG 3612 --- [nio-8081-exec-1] org.hibernate.SQL : select country0_.country_id as country_1_0_0_, country0_.country_code as country_2_0_0_, country0_.country_name as country_3_0_0_ from country country0_ where country0_.country_id=?
2018-09-01 05:40:07.863 TRACE 3612 --- [nio-8081-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [1]
2018-09-01 05:40:07.865 TRACE 3612 --- [nio-8081-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([country_2_0_0_] : [VARCHAR]) - [IN ]
2018-09-01 05:40:07.865 TRACE 3612 --- [nio-8081-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([country_3_0_0_] : [VARCHAR]) - [India]
2018-09-01 05:40:07.865 TRACE 3612 --- [nio-8081-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.learning.springboot.model.Country.languages#1]
2018-09-01 05:40:07.875 DEBUG 3612 --- [nio-8081-exec-1] org.hibernate.SQL : select languages0_.country_id as country_3_2_0_, languages0_.language_id as language1_2_0_, languages0_.language_id as language1_2_1_, languages0_.country_id as country_3_2_1_, languages0_.language_name as language2_2_1_ from language languages0_ where languages0_.country_id=?
Ниже приведен ответ, который я получаю:
{
"id": 1,
"name": "India",
"code": "IN ",
"languages": [],
}
Пожалуйста, подскажите, что я делаю не так? Я выполняю запросы, напечатанные в журналах, и они дают ожидаемые результаты, но в ответе есть пустой список языков.
Edit:
Ранее у меня было два языка для каждой страны в базе данных. Я удалил один язык, и ответ подходит для одного языка. Но в случае нескольких языков язык в ответе оказывается пустым.