SpringFramework JdbcTemplate RowMapper

发布于 2024-08-10 19:41:50 字数 417 浏览 7 评论 0原文

我想知道 JdbcTemplate 和 RowMapper 是否支持复杂的对象检索。 我在谷歌上找不到任何关于此事的信息(标准错误?)。 :(

示例:

public class Person() {
    private Long id;
    private String name;
    private PersonDetail personDetail;
}

public class PersonDetail() {
    ...
}

表格看起来与对象相同。

我想要做的是以下内容: 创建一个 PersonRowMapper,在映射器中 PersonalDetail 也将被映射为一个对象(如果您定义了关系,hibernate 将为您做什么)。

非常感谢, 菲罗内

I am wondering if JdbcTemplate and RowMapper supports complex object retrieval.
I couldn't find anything with google on this matter (Wrong criteria?). :(

Example:

public class Person() {
    private Long id;
    private String name;
    private PersonDetail personDetail;
}

public class PersonDetail() {
    ...
}

Tables will look the same as the objects.

What I would like to do is the following:
Create a PersonRowMapper, within the mapper PersonalDetail will be also mapped as an object (what hibernate will do for you if you have a relationship defined).

Many thanks,
Firone

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别靠近我心 2024-08-17 19:41:50

当然...只是,您必须确保您的查询处理 select 子句中的联接和所有必需的值,然后像设置 Person 一样设置 personDetail 的字段(在实例化新的 PersonDetail 之后)。

如果您想要一个 PersonDetails 列表并扩充它们(即一对多),JdbcTemplate 可以使机制和语法更简单,但您必须相当手动地处理关系及其查询。或者使用休眠。

Sure...only, you'll have to make sure your query handles the joins and all the required values in the select clause, then set personDetail's fields just as you would Person's (after instantianting a new PersonDetail).

If you wanted to have a list of PersonDetails and inflate them (i.e., one to many), JdbcTemplate can make the machanics and syntax simpler but you will have to handle the relationship and its queries fairly manually. Or use Hibernate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文