🌺创建工程
创建domain包,里面写入Book类
java
package com.example.domain;
public class Book {
private Integer id;
private String name;
private String type;
private String description;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public String toString() {
return "Book{" +
"id=" + id +
", name='" + name + '\'' +
", type='" + type + '\'' +
", description='" + description + '\'' +
'}';
}
}
写入
数据层
,创建数据层接口BookDao
在BookDao中写入内容
java
package com.example.dao;
import com.example.domain.Book;
import org.apache.ibatis.annotations.Select;
@Mapper
public interface BookDao {
@Select("select * from abc where id=#{1}") //修改为自己的表名和id
public Book getById(Integer id);
}
修改properties文件为yml文件
在yml文件中写入内容
yml
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/abc //修改为自己的数据库名
username: root
password: "1234" //密码是纯数字的要带上双引号
测试接口
java
package com.example;
import com.example.dao.BookDao;
import com.example.domain.Book;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class Demo7ApplicationTests {
@Autowired
private BookDao bookDao;
@Test
void testGetById() {
Book book=bookDao.getById(1);
System.out.println(book);
}
}
运行成功
🎄报错解决
🎆java: 警告: 源发行版 17 需要目标发行版 17
这是因为springboot版本太高了 我们降低一下就好了
🎆乱码
运行后发现,之前在yml文件中的中文,运行后变成了乱码
解决方法