我的while(true)
只运行一次,因此我正在尝试添加断点以查看正在发生的事情,但似乎我的run()
内似乎无法访问它们。我正在使用IntelliJ。在调试器中有一个“Threads”选项卡。我是否需要在该选项卡中执行某些操作,例如选择正确的线程以便到达我的断点?我也看到了线程名称,我想知道如何在这个列表中找到正确的线程。
public class MyClass extends ServerWorkflowProcess<OtherClass> {
private ExecutorService executorService = Executors.newSingleThreadExecutor();
...
@Override
public void bootup() {
logger.info("Booting up: " + this);
BackgroundProcess backgroundImpositioner = new BackgroundProcess(this.getCollection());
executorService.submit(backgroundImpositioner);
}
@Override
public void shutdown() {
executorService.shutdown();
}
}
后台流程
public class BackgroundProcess implements Runnable {
protected volatile Logger logger = Logger.getLogger(BackgroundImpositioner.class.getName());
Collection<ImpositionWorkstation> impositionWorkstations;
public BackgroundImpositioner(Collection<ImpositionWorkstation> impositionWorkstation) {
this.impositionWorkstations = impositionWorkstation;
}
public void run() {
while(true) {
logger.info("looping");
for (ImpositionWorkstation workstation : impositionWorkstations) {
if (workstation.canAcceptWork()) {
//go do work in another thread so we're not blocking this
workstation.getWorkFromQueue();
try {
workstation.doWork();
} catch (ImpositionException e) {
logger.severe(e.getMessage());
}
}
}
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
logger.severe("Background impositioner was interrupted");
}
}
}
}
旁注:控制台显示“循环”,所以我知道它会被执行一次。断点永远不会被击中,并且它不会执行多次。
答案 0 :(得分:2)
有一次,我无法让Intellij Idea在断点处停下来。基本上问题是,一旦线程在断点处停止,其他线程就不会停止。
断点属性对话框中有一个设置可以防止这种情况。
右键单击断点并选择“查看断点”。
在对话框中选择一个断点。
你会注意到暂停右侧的复选框2单选按钮:全部和线程。选择全部。您可以将其设为默认值(右侧为默认按钮)。默认值将用于您添加的任何新断点。旧的需要手动更改。
修改强> 有关Intellij帮助网站的其他信息:Breakpoint options
答案 1 :(得分:0)
不要让异常默默地溜走。使用Future
方法返回的submit
。
Future<?> f=executorService.submit(backgroundImpositioner);
try {
f.get();
} catch(Exception ex) {
ex.printStackTrace();
}
然后你知道更多。
上面的代码仅用于查找您的实际问题。对于生产环境,您不会等待完成,而是在异常发生时记录,例如:
executorService.execute(new FutureTask<Object>(backgroundImpositioner, null)
{
@Override
protected void done() {
if(!isCancelled()) try {
get();
} catch(InterruptedException ex) {
throw new AssertionError("on completed task", ex);
} catch(ExecutionException ex) {
logger.log(Level.SEVERE, "in background task", ex.getCause());
}
}
});
答案 2 :(得分:0)
出于我之外的原因,我无法断开while(true)
行,但能够在run()
内的其他位置删除断点。
答案 3 :(得分:0)
如果run方法中没有抛出异常,我只能假设其中一个调用永远不会返回。
您可以在每次调用后输出输出语句,看看你能得到多少?
我想workstation.canAcceptWork()
或workstation.doWork()
是罪魁祸首。
答案 4 :(得分:0)
我遇到了类似的问题,即IntelliJ从未在Runnable类的run()方法中达到断点。我发现要击中断点的唯一位置是在public void run() {
行。