springmvc请求参数绑定集合类型

Account.java
public class Account implements Serializable {
    private String username;
    private String password;
    private Double money;

    private List<User> list;
    private Map<String,User> map;

param.jsp
<form action="param/saveAccount" method="post">
        姓名:<input type="text" name="username" /><br>
        密码:<input type="text" name="password" /><br>
        金额:<input type="text" name="money" /><br>

        user姓名:<input type="text" name="list[0].name" /><br>
        user年龄:<input type="text" name="list[0].age" /><br>

        user姓名:<input type="text" name="map['one'].name" /><br>
        user年龄:<input type="text" name="map['one'].age" /><br>
        <input type="submit" value="提交">
    </form>

ParameterController.java
    @RequestMapping("/saveAccount")
    public String testSaveAccount(Account account) {
        System.out.println("执行了...");
        System.out.println("account:"+account);
        return "success";
    }
account:Account{username='阿花', password='123', money=1000.0, list=[User{name='阿虎', age=21}], map={one=User{name='阿来', age=29}}}
全部评论

相关推荐

10-25 00:32
香梨想要offer:感觉考研以后好好学 后面能乱杀,目前这简历有点难
点赞 评论 收藏
分享
鼗:四级有点难绷,感觉能拿国家励志奖学金,学习能力应该蛮强的,四级确实不重要,但是拿这个卡你可是很恶心啊
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务