Apache Tomcat 在 Eclipse 调试期间是否阻塞其他线程?
我的调试设置当前在我的 Eclipse 中使用 tomcat (6.0) 作为服务器。
我正在尝试测试一个长任务(大约 3 分钟)的并发检查。因此,当 servlet 的其他会话尝试执行相同的过程时。我注意到第一个会话会阻塞服务器。其他会话甚至无法加载其他页面。
tomcat或eclipse中是否需要进行设置才能使其工作?
My debug setup is currently using tomcat (6.0) as server in my eclipse.
I am trying to test concurrency check for a long task (about 3mins). So when other session to the servlet tries to do the same process. I noticed while the first session blocks the server. The other session cannot even load other pages.
Is there a setting in tomcat or eclipse that needs to be set for this to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过编辑断点的属性,以便它只暂停自己的线程,或者编写条件以仅针对正确的请求停止(并不是说我确切地知道此时您必须使用哪些变量)?
Have you tried editing the properties of the breakpoint so that it only pauses its own thread, or written conditions to only stop for the correct request (not that I know exactly what variables you have to work with at that point)?