问题出自是我的Book
类的一个属性名是index
,而这个是mysql中的关键字。
@Entity
@Table(name = "book")
public class Book {
/*编号(主键)*/
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int bookId;
/*索引号*/
@Column(name = "index")
private String index;
}