I have two projects on netbeans. Project A and Project B, both have an index.jsp file. I have a breakpoint on Project B in index.jsp. I right clicked on the project and put 'Clean and Build', then I right clicked on it and selected Debug. When the application starts up the browser takes it to the correct page, but the debugger stops in Project A's index.jsp file. Why? I tried cleaning the project, clearing netbeans cache, deleting target files. Nothing works, any ideas?
Netbeans debugger stopping in wrong project file
690 Views Asked by user1084561 At
1
There are 1 best solutions below
Related Questions in NETBEANS
- entity classes are not showing when trying to create new session beans for entity classes in netbeans 9.0
- Cant connect to any github repository from my netbeans 20
- Set Netbeans Console to English
- How can I retrieves divs into a dynamic page in Java?
- how to create an sqldump file for backup in netbeans(java)
- Failed to execute goal org.codehaus.mojo:exec-maven-plugin:3.1.0
- ERROR "java.net.URL.toExternalForm()" because "location" is null"
- NetBeans snap - Java configuration
- How can one set java.base/java.util=all-unnamed in Netbeans IDE
- Why my form glitch when I type someting to textfiled in java
- How do I fix Netbeans' invalid source release?
- Apache NetBeans 20: Apache Tomcat service doesn't stop when I try to stop it from the IDE
- I can't send attachment outside of NetBeans
- Does anyone know how to fix this error in Netbeans 19 to install JavaFX
- NetBeans: Unable to Create CUnit Tests - Grayed Out Menu Options
Related Questions in NETBEANS-7
- GFortran runtime errors
- I am opening netbeans and it's loading but screen is not shown on monitor. and when I again open it, it just shows a blank window can any body help me
- How to fix java language level error in netbeans
- I want to check if the first letter of user first input is similar to the first letter for second user input
- How to differentiate files of same name?
- Accessing a class file from Netbeans source file
- extraneous end if in .dep.inc file
- Executing mysqldump using Java program in MacOS
- Netbeans - 'Build all dependencies' internal working
- Javax and org imports are not working tried everything. Nothing works why?
- Netbeans no longer automatically updates my Grails running app
- Per-user "Include Directories" in NetBeans 7.2
- Converting from a tree set into an Array?
- List of GUI functions built in NetBeans?
- Unable to compile an ImageJ plugin code in Netbeans/maven
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The problem is that NetBeans mostly attaches all sources of your open projects to a debug session. So when you have two project with the same named jsp in the same location NetBeans choose one which might be the wrong one. The same problem occors when you've the same classes in the same package in different projects.
How to resolve: