1.配置pom.xml文件
添加相关的依赖,之前没有添加junit和test的依赖启动项目的时候报错,添加上去之后就可以运行拉
2.在application.properties中添加jdbc的四个参数
spring.datasource.url=jdbc:mysql://localhost:3306/aaa spring.datasource.username=root spring.datasource.password=tiger spring.datasource.driver-class-name=com.mysql.jdbc.Driver
3.现在以student作为实体类
.
4.在service里面写
5.controller