Mybatis利用的bean如何定义,代码举例?
时间: 2023-03-13 09:55:00 浏览: 98
Mybatis的代码实例
MyBatis 使用 Java Bean 来定义映射关系,它可以将数据库表中的列映射到 Java 对象中的属性。例如: public class User {
private Integer id;
private String name;
private String password;
//getter and setter
}
阅读全文