I have a Spring form tag in my JSP and the model bound to it. I want some inputs inside the form to be received as single @RequestParam values, but whether I put Spring input or plain HTML input the value gets bounded to the model. How can I escape that behavior?
Share
Simply put this inside your spring form:
and you will be able to get the value in your controller with
@RequestParamwithout binding it to your model: