@one注解的作用:
在 mybatis 中,@one 是 @result 注解的一部分,用于定义一对一(one-to-one)关系映射。它通常在 @result 注解中使用,表示查询某个字段时,通过关联查询来获取其他表的数据,并将结果映射到另一个实体类上。
典型应用场景:
- 一对一关联:比如,用户 (user) 和用户档案 (profile) 之间的一对一关系。在 user 中有一个 profile 类型的属性,@one 可以用来指定如何查询和填充这个属性。
基本语法:
@result(property = "profile", column = "profile_id",
one = @one(select = "com.example.mapper.profilemapper.selectprofilebyid"))
- property:对应 java 类中的属性。
- column:对应数据库中的字段,通常是关联的外键。
- one:指明了关联查询的一对一关系,
select属性是关联查询的 sql 方法。
详细说明:
- @result:用来映射数据库结果到 java 对象字段的注解。
- @one:定义一对一映射关系,通过 select 指定需要执行的关联查询的方法,通常是一个查询关联实体的方法。
例子:
假设我们有两个实体类,user 和 profile,并且这两个实体类之间有一对一关系。我们需要通过 user 查询出与之相关的 profile,即通过 user 的 profile_id 字段关联到 profile 表。
1. 实体类
public class user {
private integer id;
private string username;
private profile profile; // 这里有一个一对一关系,user 拥有一个 profile
// getter 和 setter 略
}
public class profile {
private integer id;
private string address;
// getter 和 setter 略
}
2. 数据库表结构:
users 表:
create table users (
id int primary key,
username varchar(255),
profile_id int
);
profiles 表:
create table profiles (
id int primary key,
address varchar(255)
);
3. mapper 接口
public interface usermapper {
@select("select id, username, profile_id from users where id = #{id}")
@results({
@result(property = "profile", column = "profile_id",
one = @one(select = "com.example.mapper.profilemapper.selectprofilebyid"))
})
user selectuserbyid(integer id);
}
4. profilemapper 接口
public interface profilemapper {
@select("select * from profiles where id = #{profileid}")
profile selectprofilebyid(integer profileid);
}
工作原理:
- @select 查询:selectuserbyid 方法从 users 表中查询 user 的基本信息。其中profile_id 字段存储的是 profile 表的主键。
- @results 注解:通过 @result 注解,profile_id 字段被映射到 user 类的 profile 属性,但是一个是int,一个是profile类,所以这里就要用到@one。
- @one 注解:@one 注解指定了如何加载 profile 信息。具体来说,它使用 selectprofilebyid 方法根据 profile_id 字段来查询 profile 表,从中找出对应的 profile 实体,然后赋值给user 类的 profile 属性。
@one相关参数
- select:指定用来执行关联查询的方法,通常是一个查询关联实体的 mapper 方法。例如,在这个例子中,com.example.mapper.profilemapper.selectprofilebyid 用来查询 profile 信息。
- fetchtype:控制是否立即加载或延迟加载关联数据。这是可选的。有效值为 lazy (懒加载)和 eager(急加载)。 指定属性后,将在映射中忽略全局配置参数 lazyloadingenabled,使用属性的值。
总结
- @one 注解 用于指定 mybatis 一对一关联查询的行为,在 @result 中使用。
- @result 用来将查询的结果映射到 java 对象的字段。
- @one(select = "somemethod") 用来指定关联查询的方法,通常在有外键关联的字段上使用。
- @one 可以用于懒加载关联对象,从而提高性能。
学完@one,@many也差不多可以掌握了,二者语法是类似的。
到此这篇关于mybatis中@one的实现示例的文章就介绍到这了,更多相关mybatis @one内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!
发表评论