Я получаю сообщение об ошибке, когда пытаюсь получить ответ от моего остальных API. Ошибка говорит ..
"message": "Could not write JSON: failed to lazily initialize a collection of role: pl.bmstefanski.some_package.entity.impl.GuildEntityImpl.regions, could not initialize proxy - no Session; nested exception is com.fasterxml.jackson.databind.JsonMappingException: failed to lazily initialize a collection of role: pl.bmstefanski.some_package.entity.impl.GuildEntityImpl.regions, could not initialize proxy - no Session (through reference chain: java.util.Collections$UnmodifiableRandomAccessList[0]->pl.bmstefanski.some_package.entity.impl.GuildEntityImpl[\"regions\"])"
Указанная коллекция:
@ElementCollection(targetClass = String.class)
@Column(columnDefinition = "TEXT", nullable = false)
private List<String> regions;
У вас есть идея, почему Джексон не может отобразить эту коллекцию в формате json?