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

Summary: In JSPs the jsp:useBean's class string is not changed when package name is refactored
Product: javaee Reporter: mihailsestakov <mihailsestakov>
Component: RefactoringAssignee: issues@javaee <issues>
Status: NEW ---    
Severity: blocker    
Priority: P2    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:
Bug Depends on:    
Bug Blocks: 48465    

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.