i键入以下代码{“name”:“upul”,“email”:upul@gmail.com“}以 Postman 的身份请求,

zsohkypk  于 2021-07-24  发布在  Java
关注(0)|答案(3)|浏览(261)

但我犯了个错误,
2021-02-05 12:19:08.944 warn 8168---[nio-8080-exec-3].w.s.m.s.defaulthandlerexceptionresolver:已解析[org.springframework.web.bind.missingservletrequestparameterexception:所需的字符串参数'name'不存在]
依赖关系是,

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.2</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example.sample</groupId>
    <artifactId>springboot-test</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>springboot-test</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>1.8</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

存储库是

package com.example.sample.springboottest.Model;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

@Entity
public class User {

    @Id
    @GeneratedValue(strategy= GenerationType.AUTO)
    private Integer id;

    private String name;

    private String email;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }
}

控制器是

package com.example.sample.springboottest.Controller;

import com.example.sample.springboottest.Model.User;
import com.example.sample.springboottest.Repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;

@Controller
@RequestMapping(path = "/demo")
public class MainController {

@Autowired
private UserRepository userRepository;

@PostMapping(path = "/add")
public @ResponseBody String addNewUser(@RequestParam String name, @RequestParam String email){

    User n =new User();

    n.setName(name);
    n.setEmail(email);
    userRepository.save(n);
    return "Saved";
}

@GetMapping(path = "/all")
public @ResponseBody Iterable<User> getAllUser(){
    return userRepository.findAll();
}

}

属性是

spring.jpa.hibernate.ddl-auto=update
spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/db_example
spring.datasource.username=root
spring.datasource.password=root

spring.jpa.open-in-view=true

spring.jpa.show-sql=true

请帮我修一下,

lmvvr0a8

lmvvr0a81#

因为您使用的是@reuestparam,所以不能像以前那样传递json。为了传递json格式,请将@requestparam更改为@requestbody,如下所示:

@PostMapping(path = "/add")
    public @ResponseBody String addNewUser(@RequestBody User user){

//        User n =new User();
//
//        n.setName(name);
//        n.setEmail(email);
//        userRepository.save(n);
        userRepository.save(user);
        return "Saved";
    }

Postman 结果如下:

但如果您需要使用@requestparam,则传递查询字符串,如下所示:

localhost:8811/demo/add?name=upul&email=upul@gmail.com

83qze16e

83qze16e2#

看来你搞混了 @RequestParam@RequestBody 你好像想 POST 控制器的json对象,在这种情况下,方法签名应该是 public @ResponseBody String addNewUser(@RequestBody User user){

jm81lzqq

jm81lzqq3#

Required String parameter 'name' is not present

带注解的方法参数 @RequestParam 默认情况下是必需的。在调用api时,似乎没有传递 name 查询参数。
edit:在这种情况下,我们可以在请求主体中传递用户。

相关问题