eclipse – 如何摆脱调试当前指令指针

当前指令指针..当我将调试器放在特定位置时,它开始调试其上一步,然后到达当前位置.在调试器启动时,我可以在另一个位置看到带有调试器图标的当前指令指针.

请帮助我,我过去两天一直试图摆脱它.

这是场景:

我把调试器放在viewattachment上,它是在openattachment之后出现的.
但是当我点击openattachment时,这开始调试,然后当我点击viewattachment时,调试就开始了.

为什么要开放附加?对我来说是一个开销.任何人都可以帮助我吗?

如果我的问题不明确,请告诉我.

代码如下……….

   else if (getParameters().get("type") != null && getParameters().get("type")[0].equals("**viewattachment**")){
            String elementUid = getParameters().get("elementUid")[0];
            String target = "failure";
            JSONObject obj = new JSONObject();
            if (!isUserLoggedIn()){
                target="session";
                obj.put("result", target);
            }
            else{
                if (!isValidUid(cardUid) || !isValidUid(elementUid)){
                    //return "fail";
                    obj.put("result", "fail");
                }
                else {
                    setMessages(msgService.WSIGetAttachments(elementUid));
                    if (!isAccountManager()) {
                        Message msg = getMessages().get(0); 
                        HttpServletResponse response = ServletActionContext.getResponse();
                        try{ 
                            response.getOutputStream().print(obj.toString());                
                        } 
                        catch(IOException e){ 
                            log.error(e);
                        }           
                        response.setContentType(msg.getAttachmentcontentType());
                        response.setHeader("filename", msg.getAttachmentName());
                        response.getWriter().print(obj);
                        response.getWriter().flush();
                        response.getWriter().close();


                    }
                    return null;
                }
            }
        }
        else if (getParameters().get("type") != null && getParameters().get("type")[0].equals("**openattachment**")){
            String elementUid = getParameters().get("elementUid")[0];
            if (elementUid != null) {//Conversion detail request
                JSONArray array = new JSONArray();
                JSONObject obj = new JSONObject();
                if (!isValidUid(elementUid)){
                    obj.put("result", "fail");
                    obj.put("message", "Not a valid element");
                }
                else{
                    setMessages(msgService.WSIGetAttachments(elementUid));
                    obj.put("result","success");
                    if (getMessages() != null && getMessages().size() > 0){                 
                        for (Message m : getMessages()){                    
                            JSONObject obj1 = new JSONObject();
                            obj1.put("attachmentname", m.getAttachmentName());
                            obj1.put("elementUid", m.getElementUID());  
                            array.add(obj1);
                        }
                    }
                    obj.put("messages", array);
                    HttpServletResponse httpResponse = ServletActionContext.getResponse(); 
                    try{ 
                        httpResponse.getOutputStream().print(obj.toString());                
                    } 
                    catch(IOException e){ 
                        log.error(e);
                    }           
                    return null;
                }
            }
        }

最佳答案 只需右键单击源文件,您就可以选择“执行”选项,在运行时,在控制台窗口中单击停止(红色按钮),这将删除“调试当前指令指针”

点赞