Я пытаюсь использовать org.springframework.data.domain.jaxb.PageAdapter
на одном из моих полей.Это на Filter.getFilterEntries()
, но я сталкиваюсь со следующей ошибкой.
Two classes have the same XML type name "resourceSupport". Use @XmlType.name and @XmlType.namespace to assign different names to them.
this problem is related to the following location:
at com.x.y.rest.data.ResourceSupport
at com.x.y.z.ItemView
this problem is related to the following location:
at org.springframework.hateoas.ResourceSupport
at org.springframework.data.domain.jaxb.SpringDataJaxb$PageDto
at public org.springframework.data.domain.Page com.x.y.z.e.domain.m.Filter.getFilterEntries()
at com.x.y.z.e.domain.m.Filter
Я не могу изменить com.x.y.z.ItemView
класс.
Добавление @XmlType(namespace = "someNamespace", name = "filter")
в com.x.y.z.e.domain.m.Filter
не помогло.