简体   繁体   中英

Java Spring Restcontroller Post

I need help creating a POST request to my Java Spring Restcontroller.

This is my controller -

@RestController
@RequestMapping("hedgesimulator/")
public class HedgeSimulatorController {

    @RequestMapping(value = "hedgesim/", method = RequestMethod.POST)
    @ResponseBody
    public HedgeSimulatorLog putHedgeSimulation(
        @RequestBody HedgeSimulatorLog hedgeSimulatorLog) {

        System.out.println(hedgeSimulatorLog.toJsonString());
        return hedgeSimulatorLog;
    }
}

I am using Chrome's "Advanced Rest Client" Plugin to POST my request to my URL (I am sure my localhost is running properly, etc.)

What do I need to add to my header?

I receive an error for "HTTP 400 - Status report: The request sent by the client was syntactically incorrect"

Please help!

To pass an object to controller you must configure HttpMessageConverter which helds serialization and deserealization of this object. For example, if you want to pass an object to controller as JSON, set a MappingJackson2HttpMessageConverter as parameter in your mvc declaration in spring config file.

<mvc:annotation-driven>
    <mvc:message-converters>
        <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"/>
    </mvc:message-converters>
</mvc:annotation-driven>

If http message converter configured properly, maybe request was improperly formed.

@RequestMapping(value =“ / hedgesim /”,方法= RequestMethod.POST)

Try with following, hope you might resolve the issue:

  1. Since you are using @RestController annotation, so no need to use @ResponseBody annotation again, which is redundant.

  2. If you are using spring boot, then make sure you have added the below dependency .

      <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> 
  3. If the project is not spring boot, then add dependency for jackson : com.fasterxml.jackson.databind.ObjectMapper

  4. Just to make sure the request body is correct, what you can do is, execute request method first, get the JSON response, pass the same JSON for POST, so this might avoid some typo/human error while creating JSON data.

Hope, it helps.

You can do the following checks.

  1. Validate the request body you are sending through some online tool like JSonLint .
  2. Check whether MappingJackson2HttpMessageConverter is registered or not. By default, Spring registers this converter if you have the jar in the classpath.
  3. No need to use @ResponseBody if you are using @RestController . So remove it.

For a complete example on creating and consuming REST Service using Spring 4.0 , you can visit Techno Spots .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM