Я пытаюсь создать контроллер отдыха двумя способами сохранения.Один для сохранения одного объекта и один для сохранения списка объектов.
@RequestMapping(method = [POST, PUT])
fun save(@RequestBody entity: T): T {
return service.save(entity)
}
@RequestMapping(method = [POST, PUT])
fun save(@RequestBody entities: List<T>): List<T> {
return service.save(entities)
}
Однако из-за того, что я предполагаю, тип erasure spring создает следующее исключение.
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in class path resource [org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfiguration$EnableWebMvcConfiguration.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'crudControllerImpl' method
public final T dk.fitfit.send.mail.CrudController.save(T)
to {[/messages],methods=[POST || PUT]}: There is already 'crudControllerImpl' bean method
public final java.util.List<T> dk.fitfit.send.mail.CrudController.save2(java.util.List<? extends T>) mapped.
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1694) ~[spring-beans-5.0.10.RELEASE.jar:5.0.10.RELEASE]
...
Любая подсказка?