使用 JPA 在我的 CRUD 桌面应用程序上模拟 4,000 个选择
我有一个使用 JPA 和 EclipseLink 的简单桌面应用程序,该应用程序有 7 个表,每个表有 8 条记录,一切正常。
但我想模拟我的桌面应用程序有大约 4000 个 select 语句请求,看看它是否对学校项目有良好的响应。
提前致谢!
i have a simple desktop application using JPA with EclipseLink, this application has 7 tables each one with 8 records, everything is ok.
but i want to simulate that my desktop application has like 4000 request of select statements and see if it has a good response is for a school project.
thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
线程。
创建一个实现 Runnable 的类,在方法 run() 中循环调用您的服务。然后创建几个运行这些 Runnable 的线程。
Threads.
Create a class that implements Runnable, in the method run() call you services in a loop. Then create several threads which will run these Runnable.