使用 spring jdbctemplate 从数据库填充 pojo

发布于 2024-11-05 13:45:31 字数 248 浏览 5 评论 0原文

通过允许 spring 自动检测与列匹配的数据成员的名称,是否可以在不创建映射器的情况下填充对象(pojo)? 我期望有类似于 SimpleJdbcInsert 的东西,我在其中使用如下:

new SimpleJdbcInsert(dataSource).withTableName("actors").execute(new BeanPropertySqlParameterSource(actor));

谢谢!

Is it possible to populate an object (pojo) without creating a mapper, by allowing spring to auto detect the names of the data members that matches the columns?
I was expecting to have something similar to SimpleJdbcInsert in which I use as follows:

new SimpleJdbcInsert(dataSource).withTableName("actors").execute(new BeanPropertySqlParameterSource(actor));

Thanks!

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

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

发布评论

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

评论(3

清旖 2024-11-12 13:45:31

根据您使用的 Spring 版本,您可以使用 BeanPropertyRowMapper 它将把列映射到 POJO 中的变量。它将映射直接匹配或将下划线样式数据库名称转换为 Java 类中的驼峰式大小写样式变量名称。

Depending on which version of Spring you are using, you can use the BeanPropertyRowMapper which will map columns to variables in your POJO. It will map either direct matches or convert underscore style database names to camel case style variable names in your Java class.

落墨 2024-11-12 13:45:31

老实说,我不知道 spring,但使用 apache 的 Bean common utils 可以很容易地实现一个通用的 JDBC 模板来实现这一点。

Honestly I don't know for spring but using Bean common utils from apache it is easy to implement a generic JDBC template doing exactly that.

愛上了 2024-11-12 13:45:31

你使用的是SimpleJdbcInsert,我想你的意思是SimpleJdbcTemplate,重新运行结果?

好的方法是使用 Spring JDBC 中的 RowMapper 或 ResultSetExtractor。

但是您可以使用 SimpleJdbcTemplate 中的 queryForMap 方法跳过包装器,并使用方法 populate(Object bean, Map properties) 将结果传递到 apache commons beanutils 中的 BeanUtils 中。

尽管如此,我认为最好的解决方案是 RowMapper 或 ResultSetExtractor。

You are using a SimpleJdbcInsert, I think you mean SimpleJdbcTemplate that retrun results?

The good way is using a RowMapper or a ResultSetExtractor from Spring JDBC.

But you can skip the wrapper by using the method queryForMap from SimpleJdbcTemplate and pass the results in BeanUtils from apache commons beanutils with the methods populate(Object bean, Map properties).

Althought, I think the best solution is RowMapper or a ResultSetExtractor.

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