我想system.out.println()
在运行一个 Servlet 的 JIRA 插件时使用什么来检查 eclipse 中的流和变量值来调试程序。当我在 eclipse 中对代码进行一些更改时,它会反映在浏览器上,但是当我使用时,我system.out.println
应该在哪里看到输出?
示例代码:
@RequiresXsrfCheck
protected String doExecute()
{
LOG.info("BulkCloneDetails doExecute start...");
filterUrl = null;
cloneSubTasks = false;
cloneAttachments = false;
deleteAfterClone = false;
requestId = null;
issues = null;
getServerInfoFromPage();
**System.out.println("Print something here");**
errorsCollection.put("filterPath", i18n.getText("Remote login failed"));
addErrors(errorsCollection);
return SUCCESS;
}