是否可以阻止Spring WebFlow绑定解析查询参数?

时间:2015-08-06 21:06:47

标签: spring spring-mvc data-binding spring-webflow-2

我有一个简单的视图状态:

<view-state id="loginForm" view="loginView" model="user">
  <binder>
    <binding property="email" />
    <binding property="password" />
  </binder>
  ...
</view-state>

并且网址 MAY 包含?email=somebody%40somewhere.com用于其他目的(不是此形式)。视图的初始呈现很好,但是在提交时,绑定到user.email的值是List<String>,其中包含表单中的值(已发布回) AND 查询参数值。这不仅意外,而且有潜在危险(我认为)。无论如何,我想阻止查询参数的绑定。有没有办法配置它?

0 个答案:

没有答案