使用 JPA 时 SQL 存储过程发生了什么?
当我们使用JPA时SP发生了什么? JPA 会杀死存储过程吗?
What happened to SP when we use of JPA? Does JPA kill stored-procedures?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我们使用JPA时SP发生了什么? JPA 会杀死存储过程吗?
What happened to SP when we use of JPA? Does JPA kill stored-procedures?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
JPA 没有/不会终止存储过程。您可以在您的应用程序中使用它们。说 JPA 杀死了存储过程几乎就像说 JPA 杀死了 SQL。对于应用程序的某些部分来说,简单、直接的原生 SQL 仍然是最佳选择。即使该应用程序主要使用 JPA。
JPA did not/will not kill stored procedures. You can use them both in your application. Saying that JPA killed stored procedures is almost like saying that JPA killed SQL. Plain-old-straight native SQL is still the best choice for some portions of your applications. Even if that application is mostly using JPA.