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 129359 - In JSPs the jsp:useBean's class string is not changed when package name is refactored
Summary: In JSPs the jsp:useBean's class string is not changed when package name is re...
Status: NEW
Alias: None
Product: javaee
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker with 1 vote (vote)
Assignee: issues@javaee
URL:
Keywords:
Depends on:
Blocks: 48465
  Show dependency tree
 
Reported: 2008-03-06 06:35 UTC by mihailsestakov
Modified: 2009-09-30 13:30 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description mihailsestakov 2008-03-06 06:35:12 UTC
For example, changing the package from "a.b.c.d.e" to "a.b.c.d" did not change the jsp:useBean string, and the string
remains as:
    <jsp:useBean id="myclass" class="a.b.c.d.e.MyClass" scope="request"/>
instead of changing to:
    <jsp:useBean id="myclass" class="a.b.c.d.MyClass" scope="request"/>
Comment 1 Petr Pisl 2008-03-06 08:55:28 UTC
I think this is not still supported. 
Comment 2 Erno Mononen 2008-03-06 09:03:22 UTC
Right, not supported at the moment and unfortunately won't be supported in 6.1 either, hopefully in the release after 
that.