Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 647965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T21:46:51+00:00 2026-05-13T21:46:51+00:00

I have an annotated controller with a method that expects a model and a

  • 0

I have an annotated controller with a method that expects a model and a binding result

@RequestMapping(method = RequestMethod.POST)
  public ModelAndView submit(@ModelAttribute(“user”) User user, BindingResult bindingResult) {
     //do something
}

How do I test the binding result? If I call the method with a user and a binding result then I’m not testing the binding process. I figure there myst be something that takes a MockHttpServletRequest and returns the model and the binding result, any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T21:46:52+00:00Added an answer on May 13, 2026 at 9:46 pm

    Are you trying to test the binding (which happens before this method would be called) or are you trying to test the “submit” handler method?

    You can test the binding with something like this:

     @Test
        public void testHandlerMethod() {
    
            final MockHttpServletRequest request = new MockHttpServletRequest("post", "/...");
            request.setParameter("firstName", "Joe");
            request.setParameter("lastName", "Smith");
    
            final User user = new User();
            final WebDataBinder binder = new WebDataBinder(user, "user");
            binder.bind(new MutablePropertyValues(request.getParameterMap()));
    
            final ModelAndView mv = controllerTestInstance.submit(user, binder.getBindingResult());
    
            // Asserts...
    
        }
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Imagine I have this annotated method in a Spring 3 @Controller @RequestMapping() public @ResponseBody
Imagine a code like this one: @RequestMapping(value=/users, method=RequestMethod.GET) public String list(Model model) { ...
I have a method annotated with @PrePersist annotation but I've seen that when this
If I have a Spring Controller with two SEPARATE methods, one annotated by: @ExceptionHandler(Exception.class)
I have a bunch of annotated, interrelated POJOs that I want to create/modify/search over
I have a Spring MVC controller with an action that's called using AJAX. @SessionAttributes({userContext})
I am using spring 3 mvc/security frameworks. I have created a Controller class that
How can I create a Pointcut around my methods annotated with @RequestMapping? I have
I have created a custom HandlerInterceptorAdapter to override the postHandle method: public class AcmeInterceptor
I have a Spring MVC Controller class that needs a property set from a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.