Java Spring Restcontroller Post

2019-09-19 12:54发布

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!

4条回答
唯我独甜
2楼-- · 2019-09-19 13:41

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.

查看更多
爷的心禁止访问
3楼-- · 2019-09-19 13:44

@RequestMapping(value = "/hedgesim/", method = RequestMethod.POST)

查看更多
可以哭但决不认输i
4楼-- · 2019-09-19 13:45

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.

查看更多
虎瘦雄心在
5楼-- · 2019-09-19 13:48

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.

查看更多
登录 后发表回答