Проблемы при использовании PageAdapter из Spring - PullRequest
0 голосов
/ 24 мая 2018

Я пытаюсь использовать 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 не помогло.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...