This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 7465 - first setting of JSP breakpoint is very slow
Summary: first setting of JSP breakpoint is very slow
Status: CLOSED INVALID
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 3.x
Hardware: All All
: P4 normal (vote)
Assignee: Svata Dedic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2000-08-23 08:22 UTC by Damian Frach
Modified: 2007-09-26 09:14 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Damian Frach 2000-08-23 08:22:12 UTC
When JSP breakpoint is set by first time after start IDE, the response is very
slow.

Probably problem is, that the java parser is initializing, because no java
source code is opened in editor.
Comment 1 Svata Dedic 2000-08-23 08:26:59 UTC
The parser creates FileSystem objects for the system's classpath so it can
quickly lookup classes at the time of parsing. This is done during the first
parse request. If you didn't edit any Java file and didn't expand any Java
source node, then the parser was uninitialized until the Debugger tried to find
a class appropriate for the breakpoint's line and posted a parse request.
Comment 2 Svata Dedic 2000-09-01 08:12:59 UTC
Background pre-initialization would probably introduce more problems than the
current behaviour.