spring boot项目报错:Cannot determine value type from string ‘xxxxx’

spring boot项目报错:Cannot determine value type from string 'xxxxxx’

完整报错信如下:

Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception 
[Request processing failed; nested exception is org.springframework.dao.DataIntegrityViolationException:
 Error attempting to get column 'name' from result set.  
 Cause: java.sql.SQLDataException: Cannot determine value type from string '张三'; 
 Cannot determine value type from string '张三'; 
nested exception is java.sql.SQLDataException:
 Cannot determine value type from string '张三'] with root cause

原因分析:
经测试:
当如下情况:实体类创建了一个参数不完整 的构造方法(具有完整参数 的构造方法不会报错!),而没有为此创建一个无参的构造方法时,就会报次错误。

@Data
public class User {
    private int id;
    private String name;
    private int age;
    
    public User( String name, int age) {
        this.name = name;
        this.age = age;
    }
}

解决问题:
再添加一个无参的构造方法,问题解决。代码修改为:

@Data
public class User {
    private int id;
    private String name;
    private int age;

    //Cannot determine value type from string '张三'] with root cause


    public User() {
    }

    public User(String name, int age) {
        this.name = name;
        this.age = age;
    }
}

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值