Tagged Questions
0
votes
1answer
262 views
handle form post with a array of items in spring MVC
I'm trying to send some data from the client side to the server, and have it processed into a file download.
I'm using a simple HTML form because I want to initialize a file download (and not AJAX).
...
0
votes
1answer
53 views
Invalid byte 1 of 1-byte UTF-8 sequence
how to solve this issue :
com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Invalid byte 1 of 1-byte UTF-8 sequence.
I get this exception when uploading the file to ...
-2
votes
2answers
188 views
Do Spring MVC controller look for ids or names?
If I have the following HTML form:
<form id="myForm" action="/myFormHandler" method="post">
<input type="hidden" id="fizz-id" name="fizz" value="3" />
<input type="hidden" ...
0
votes
1answer
107 views
form:errors does not display error message when value is rejected
the complete code is in github:
https://github.com/cuipengfei/MPJSP/tree/master/tmp
in the controller, there is a method that handles the submit:
@RequestMapping(value = "/home", method = ...
1
vote
1answer
850 views
How do I post a checkbox array to a Spring 3 MVC controller?
I have a html form which has a dynamic amount of checkboxes in it. How do I post these checkboxes as an array, and how do I recieve them in my spring 3 controller?
8
votes
2answers
5k views
UTF-8 encoding in Spring MVC, problem with FORMs
I have this in web.xml
<filter>
<filter-name>encoding-filter</filter-name>
<filter-class>
org.springframework.web.filter.CharacterEncodingFilter
...
1
vote
3answers
254 views
Domain Transfer Object for a html form with various count of fields
Has anybody dealt with a situation, that on the client side (html form) there is one type of field, that exist various times?
Like:
<input id="fileRef1" type="hidden"/>
<input ...
1
vote
2answers
359 views
When should I use html's <form> and when spring's <form:form> in Spring MVC web app?
I am wondering is it good practice to write all forms in spring tags or can I mix spring form tags with html form tags?
0
votes
1answer
173 views
How can you print out the values of undeclared HTML form values from a Spring (3) controller action method?
If my HTML form contains two form inputs (input1 and input2), I could access them like this:
@RequestMapping(value = "/foo", method = RequestMethod.POST)
public String foo(HttpServletRequest request, ...
1
vote
1answer
380 views
Can you mix and match Spring form tags and regular HTML form tags in a single HTML form?
I have a legacy HTML form that I want to make into a Spring form. Do I need to switch all of the form tags to Spring form tags or could I mix and match them as I please?
In other words, something ...
0
votes
1answer
447 views
If you use a regular HTML <form> tag instead of the Spring <form:form> tag, how do you specify where it's submitted?
In the Spring docs, the section on multipart support has an example of specifying a multipart form as this:
<form method="post" action="upload.form" enctype="multipart/form-data">
This ...