Spring SimpleJdbcTestUtils 示例

发布于 2024-10-04 16:11:17 字数 149 浏览 1 评论 0原文

现在正在开发具有 Spring JDBC 支持的独立应用程序。 尝试进行一些集成测试并找到了 SimpleJdbcTestUtils 实用程序类,但遗憾的是找不到任何如何使用它的示例。

有人可以给我提供一个如何使用 SimpleJdbcTestUtils 的示例吗?

Now developing stand alone application with Spring JDBC support.
Trying to do some integration testing and found SimpleJdbcTestUtils utility class, but sadly can't find any example how to use it.

Could someone provide me with a example how to use SimpleJdbcTestUtils ?

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

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

发布评论

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

评论(1

二智少女猫性小仙女 2024-10-11 16:11:17

这只是一个实用程序类...你想做什么?

它使用 JdbcTemplate 工作,这是另一个方便的小型 Spring 实用程序。它的常见用途是执行快速的小型 JDBC 查询来计算表中的行数。

它只是简写 - 阅读 javadocs/source,你应该了解其意图是什么(老实说,spring 的源代码很容易阅读..)

无论如何,jdbctemplate 易于理解,但从测试的角度来看,也许更有趣的是事务性测试执行事务管理的超类。所有内容都包含在其网站上的 spring html 文档中。

无论如何,根据要求为您找到了一个示例:

https://svn.codehaus.org/mod4j/tags/mod4j-1.1.0/Examples/RecordShop-ExampleProject/RecordShop-data/src/test /java/org/company/recordshop/PersonDaoTest.java

It's just a utility class... what are you wanting to do?

It works using a JdbcTemplate which is another handy little Spring util. A common use for it is to execute quick little JDBC queries to count rows in tables.

it's just shorthand - read the javadocs/source and you should get an idea of what the intention is (honestly, spring's source is easy to read..)

anyway jdbctemplate is useful to understand, but maybe more interesting from a testing perspective is the transactional test superclasses, which do transaction management. All covered in the spring html docs on their site.

Anyway found an example for you, as requested:

https://svn.codehaus.org/mod4j/tags/mod4j-1.1.0/Examples/RecordShop-ExampleProject/RecordShop-data/src/test/java/org/company/recordshop/PersonDaoTest.java

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