为了账号安全,请及时绑定邮箱和手机立即绑定

SpringMVC参数绑定的方法

标签:
Java
基本数据类型包装类Integer,其它类似

用包装类型原因:Controller方法参数中定义的是基本数据类型,但是从页面提交过来的数据为null或者”"的话,会出现数据转换的异常

Controller:

@RequestMapping("/veiw")
public void test(Integer age) {
}

Form表单:

<form action="/veiw" method="post">
<input name="age" value="5" type="text"/>
...
</form>

Controller中和form表单参数变量名保持一致,就能完成数据绑定,如果不一致可以使用@RequestParam注解

自定义对象模型

Model class:

public class Chapter {
    // 章节id
    private Integer id;
    // courseId
    private Integer courseId;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getCourseId() {
        return courseId;
    }

    public void setCourseId(Integer courseId) {
        this.courseId = courseId;
    }
}

Controller:

@RequestMapping("/veiw")
public void test(Chapter chapter) {
}

form表单:

<form action="/veiw" method="post">
<input name="id" value="5" type="text"/>
<input name="courseId" value="5" type="text"/>
...
</form>

只要model中对象名与form表单的name一致即可

自定义复合对象模型

Model class:

 public Class Course{
    // 课程Id
    private Integer courseId;
    // 课程名称
    private String title;
    // 课程章节
    private List<Chapter> chapterList;

    public Integer getCourseId() {
        return courseId;
    }

    public void setCourseId(Integer courseId) {
        this.courseId = courseId;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }
    public List<Chapter> getChapterList() {
        return chapterList;
    }

    public void setChapterList(List<Chapter> chapterList) {
        this.chapterList = chapterList;
    }
}

Controller:

@RequestMapping("/veiw")
public void test(Course age) {
}

form表单:

<form action="/veiw" method="post">
<input name="chapter.id" value="5" type="text"/>
<input name="chapter.courseId" value="5" type="text"/>
...
</form>

使用“属性名(对象类型的属性).属性名”来命名input的name

List、Set、Map绑定

与上面的自定义复合属性差别在于input中name的命名

  • List,Set表单中需要指定List的下标

public Class Course{
   String id;
   List<Chapter> chapter;
   setter..
   getter..
}

form(List、Set):

<form action="/veiw" method="post">
<input name="chapter[0].id" value="5" type="text"/>
<input name="chapter[0].courseId" value="5" type="text"/>
...
</form>
  • Map
<form action="/veiw" method="post">
<input name="chapter["id"] value="5" type="text"/>
<input name="chapter["courseId"] value="5" type="text"/>
...
</form>
关于@ModelAttribute几种用法
  1. @ModelAttribute注释void返回值的方法
  2. @ModelAttribute(value="")注释返回具体类的方法
  3. .@ModelAttribute注释方法参数
    具体可看这@ModelAttribute很不错
点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消