[JPA] INSERT statement error

问题:执行JPA语句 insert into `order` ( create_time, delete_time, update_time, expired_time, final_total_price, order_no, placed_time, prepay_id, snap_address, snap_img, snap_items, snap_title, status, total_count, total_price, user_idvalues (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) 报如下错误:

Resolved [org.springframework.dao.InvalidDataAccessApiUsageException: Parameter value [5] did not match expected type [java.lang.Long (n/a)]

Parameter value [5] does not match the expected type [java.lang.Long (n / a)];

Solution: Modify the fifth field type in the model order class to Long.

 

Guess you like

Origin www.cnblogs.com/niu11g/p/12731076.html