Olá,
É possível receber uma lista no meu controller, sem utilizar uma classe que tenha essa lista em seus atributos? algo como...
public ModelAndView metodo(List<Entidade> entidades) {
return new ModelAndView();
}
Dessa forma acontece o seguinte erro:
SEVERE: Servlet.service() for servlet [dispatcher] in context with path [/sistema] threw exception [Request processing failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [java.util.List]: Specified class is an interface] with root cause
org.springframework.beans.BeanInstantiationException: Failed to instantiate [java.util.List]: Specified class is an interface