hoge66的专栏

-----------------------看到专栏,偷着笑!
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

springmvc jsp提交list的方法

Posted on 2017-02-21 23:11  hehoge  阅读(394)  评论(0)    收藏  举报

1、不支持List做Controller的参数:

所以报错:org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [java.util.List]: Specified class is an interface

还得用复合类做参数:

public class UserImgEx  implements Serializable{

    private static final long serialVersionUID = 1423423432L;
    
    private List<UserImg> userImgs;

    public List<UserImg> getUserImgs() {
        return userImgs;
    }

    public void setUserImgs(List<UserImg> userImgs) {
        this.userImgs = userImgs;
    }
}