怎样修复java_如何修复“ java.sql.SQLSyntaxErrorException:“字...

当我尝试在浏览器上运行URL以获取所有产品时,我一直收到此“ SQLSyntaxErrorException:’field list’中的未知列’product0_.return_policy’”.

浏览器也显示以下内容:

There was an unexpected error (type=Internal Server Error, status=500).

could not extract ResultSet; SQL [n/a]; nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet

returnPolicy是导致此问题的唯一变量.当我同时从数据库和Java中的Product类中删除变量本身时,便能够从数据库中成功检索所有值.

这是RESTController的一部分的getAllProducts方法:

@RequestMapping(method=RequestMethod.GET, value="/products")

public List getAllProducts() {

return productService.getAllProducts();

}

当我完全删除returnPolicy变量时,它工作正常.

MySQL表说明是This:

存储在returnPolicy列中的值:

returnPolicy

0

0

1

1

1

这是“产品”模型变量的代码:

import javax.persistence.Entity;

import javax.persistence.GeneratedValue;

import javax.persistence.GenerationType;

import javax.persistence.Id;

import javax.persistence.Table;

@Entity

@Table(name="product")

public class Product {

@Id

@GeneratedValue(strategy = GenerationType.AUTO)

private int id;

private String name;

private int price;

private String vendor;

private String description;

private Boolean returnPolicy;

产品资料库

@Repository public interface ProductRepository extends JpaRepository{ }

SQL tinyint(Boolean)和Java的Boolean类型之间的映射是否存在问题?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值