欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HTTP Status 500 - No converter found for return value of type: class java.util.ArrayList

程序员文章站 2024-01-14 11:53:10
...

The server encountered an internal error that prevented it from fulfilling this request.
HTTP Status 500 - No converter found for return value of type: class java.util.ArrayList
解决办法:就是在springmvc-servlet.xml配置中,配置mvc注解驱动,会自动注册消息转换器,通过消息转换器把Controller的返回值转换成json。
在springmvc-servlet.xml中添加

 <mvc:annotation-driven/>

这样就解决了