Main Tutorials

Spring MVC Form – Check if a field has an error

In this article, we will show you few Spring form tag examples to check if a field has an error message. Review the following Spring MVC bean validation example :

Technologies used :

  1. Spring 4
  2. JSTL 1.2

//Bean validation
import org.hibernate.validator.constraints.NotEmpty;
public class User {

	@NotEmpty
	String name;
	//...
}

//Controller class
@RequestMapping(value = "/users", method = RequestMethod.POST)
public String saveOrUpdateUser(
	@ModelAttribute("userForm") @Valid User user,
	BindingResult result, Model model) {

	if (result.hasErrors()) {
		//...
	} else {
		//...
	}
}

1. form:errors

If ‘name’ field has an error message, you can display it via form:errors


<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>

<form:form method="post" modelAttribute="userForm" action="${userActionUrl}">
	<label>Name</label>
	<form:input path="name" type="text" id="name" />
	<form:errors path="name" />
</form:form>

2. spring:bind and form:errors

With spring:bind, you can use ${status.error} to check if the ‘name’ field has an error, and display different CSS class conditionally.


<form:form method="post" modelAttribute="userForm" action="${userActionUrl}">
    <spring:bind path="name">
	<div class="form-group ${status.error ? 'has-error' : ''}">
		<label>Name</label>
		<form:input path="name" type="text" id="name" />
		<form:errors path="name" />
	</div>
    </spring:bind>
</form:form>

The error message is still displayed via form:errors, but this way you get more controls.

3. c:set and form:errors

Same like example 2, instead, you use c:set to check if the ‘name’ field has an error message.


<form:form method="post" modelAttribute="userForm" action="${userActionUrl}">
	<c:set var="nameHasBindError">
		<form:errors path="name"/>
	</c:set>

	<div class="form-group ${not empty nameHasBindError?"has-error":""}">
		<label>Name</label>
		<form:input path="name" type="text" id="name" />
		${nameHasBindError}
	</div>
</form:form>

This example is a bit weird, but it works.

4. Display all errors

To display all the error messages in the submitted form, use spring:hasBindErrors and loop the ${errors.allErrors}


    <spring:hasBindErrors name="userForm">
	<c:forEach var="error" items="${errors.allErrors}">
		<b><spring:message message="${error}" /></b>
		<br />
	</c:forEach>
    </spring:hasBindErrors>

Alternatively, use path="*"


<form:form method="post" modelAttribute="userForm" action="${userActionUrl}">
	<form:errors path="*" class="has-error" />
</form:form>

References

  1. Spring Tags – bind tag and hasBindErrors tag
  2. Spring MVC form handling example
  3. Spring MVC and JSR 303 @Valid bean validation example

About Author

author image
Founder of Mkyong.com, love Java and open source stuff. Follow him on Twitter. If you like my tutorials, consider make a donation to these charities.

Comments

Subscribe
Notify of
3 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments
Sai Chiranjib Pal
1 year ago

thanks

Manogar
4 years ago

useful

sneha
5 years ago

“th:field not workiing for validation”
ERROR:- Neither BindingResult nor plain target object for bean name