基于 Seam 的应用程序上的 Spring JDBCTemplate
当需要手动 SQL(带有预先编写的查询的 JDBC API)时,基于 Seam 的应用程序中的最佳方法是什么?
在 Seam 文档中,使用 Spring 桥注入 Spring JDBCTemplate 被定义为最复杂的设置,但是最容易开发。
你同意吗?
When manual SQL is required (JDBC API with pre-written queries), what is the best approach in a Seam-based application ?
In Seam Documentation, use of Spring bridge to inject a Spring JDBCTemplate is defined as the most complex to setup, but the easiest for development.
Do you agree with that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还可以使用 EntityManagers
createNativeQuery()
方法。所以你不需要 spring 在 Seam 应用程序中执行本机查询。You could also use EntityManagers
createNativeQuery()
method. So you don't need spring perform native queries in a seam application.