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 9159563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T13:31:25+00:00 2026-06-17T13:31:25+00:00

I want to create a controller method that can be called from html form

  • 0

I want to create a controller method that can be called from html form or from a standalone client using resttemplate.

The method has this signature:

@RequestMapping(method = RequestMethod.POST)
public ModelAndView save(@RequestBody @ModelAttribute(value = "itemCreateRequest")
    ItemCreateRequest request, Model model) throws NoSuchMethodException,
    SecurityException, InstantiationException, IllegalAccessException,
    IllegalArgumentException, InvocationTargetException {
...
}

The problem is, that if I use the HTML form, everything works fine, but when I try to use the standalone client the values in the request parameter come in null.

ItemCreateRequest icr = new ItemCreateRequest();
icr.setItem(new ItemDTO(null, "23", "bla", "bla bla"));
restTemplate.postForLocation("http://localhost:8080/ims_ui/items.xml", icr);

If I try the method without the @ModelAttribute the standalone client works but the HTML form not.

This is the configuration of my servlet-context.xml

    <beans:bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>
  <beans:bean id="handlerAdapter" class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
        <beans:property name="messageConverters">
            <beans:list>
                <beans:bean class="org.springframework.http.converter.xml.MarshallingHttpMessageConverter">
                    <beans:property name="marshaller" ref="marshaller"/>
                    <beans:property name="unmarshaller" ref="marshaller"/>
                </beans:bean>
                <beans:bean class="org.springframework.http.converter.StringHttpMessageConverter"/>
                <beans:bean class="org.springframework.http.converter.FormHttpMessageConverter"/>
            </beans:list>
        </beans:property>
    </beans:bean>

  <beans:bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
    <beans:property name="order" value="0" />
    <beans:property name="mediaTypes">
      <beans:map>
        <beans:entry key="jsp" value="application/html" />
        <beans:entry key="xml" value="application/xml" />
      </beans:map>
    </beans:property>

    <beans:property name="defaultViews">
      <beans:list>
        <!-- XML View -->
        <beans:bean class="org.springframework.web.servlet.view.xml.MarshallingView">
          <beans:constructor-arg ref="marshaller" />
        </beans:bean>
      </beans:list>
    </beans:property>
  </beans:bean>

  <beans:bean id="marshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
    <beans:property name="contextPaths">
            <beans:array>
                <beans:value>net.franciscovillegas.summa.ims.dto</beans:value>
                <beans:value>net.franciscovillegas.summa.ims.service.requests</beans:value>
            </beans:array>
        </beans:property>
  </beans:bean>

Thanks in advance!

  • 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-06-17T13:31:26+00:00Added an answer on June 17, 2026 at 1:31 pm

    The answer is in you’re post:

    If I try the method without the @ModelAttribute the standalone client
    works but the HTML form not.

    I think that, when you use the html application you send a request to the server with a map where all keys starts with itemCreateRequest.VARIABLE_NAME , but when you use stand alone application you send that request without the declared @ModelAttribute.

    The declared ModelAttribute, in you case “itemCreateRequest“, should stand in front of each information sent to that controller.

    You can try something like this:

    restTemplate.postForLocation("http://localhost:8080/ims_ui/items.xml", new HashMap<String, Object>(){
                {
                    put("itemCreateRequest", icr);
                }
            });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know I can create a generic method that I can call from other
I am using CakePHP and want to create a URL to a controller/view without
i want create a custom json data from the mssql 2008 results so that
I have a Rails controller with a create method, and I want to POST
I have a Members ActiveRecord model and I want to create a method that
I have controller with action new , and I want it to create ActiveRecord::Base
i want create multiple search where statement $where_search is a multiple condition from post
I want create wordpress website into which I want create user management... That means
I want create an application with animate button? how can i do? after click
I am using a virtual attribute called :all_dates on my form . The point

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.