缥缈止盈
1.首先在pom文件中加入下列依赖,一个使用jpa所需依赖,一个连接MySQL使用的依赖:mysqlmysql-connector-javaorg.springframework.bootspring-boot-starter-data-jpa 123456789102.在配置文件中添加datasource配置和jpa配置,在mysql中已经提前创建了一个名为db_test的数据库:spring:datasource:driver-class-name: com.mysql.jdbc.Driverurl: jdbc:mysql://127.0.0.1:3306/db_testusername: rootpassword: rootjpa:hibernate:ddl-auto: create #ddl-auto:设为create表示每次都重新建表show-sql: true 123456789103.创建一个Student bean,包含三个字段,id name和age,其中id设置为自动增长,bean需要使用@Entity注解,并且声明一个无参的构造函数://需要使用@Entity注解@Entitypublic class Student {//自增ID@Id@GeneratedValueprivate Integer id;private String name;private Integer age;//需要声明无参数的构造函数public Student(){ }public Integer getId() {return id;}public void setId(Integer id) {this.id = id;