History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-22629
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Normal Normal
Assignee: Nikolay Chashnikov
Reporter: Sascha Weinreuter
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

Identically named Web facets cause ID clashes in j2ee applicaton descriptor

Created: 23 Aug 07 01:00   Updated: 07 May 08 14:53
Component/s: J2EE.Deployment and Run.Generic
Fix Version/s: Selena 7.0.4, Diana 8375

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 7,230
Fixed in build: 8,356
Severity: Low


 Description  « Hide
Suppose you've got two web facets (in different modules) that are both named "Web". Those are to be packaged into a j2ee application. IDEA will create identical XML IDs for the modules in the application.xml - which is an error.
<application>
  <module id="Web">
  ...
  </module>

  <module id="Web">
  ...
  </module>
</application>


 All   Comments   Work Log   Change History      Sort Order:
Sascha Weinreuter - 23 Aug 07 01:20
The same probably applies to EJB modules as well. Since those IDs are for "internal use" only, I'd suggest to qualify them with the containing module's name.