Priority
Normal
Type
Bug 
State
Fixed 
Assignee
Nikolay Chashnikov 
Subsystem
J2EE.Deployment and Run.Generic 
Affected versions
Fixed in
Fixed in build
Next build 
Build
7230
Fixed in build
8356
Severity
0
  • Submitted by   Sascha Weinreuter
    2 years ago (23 Aug 2007 01:00)
  • Updated by   root
    3 weeks ago (17 Jan 2010 19:51)
  • Jira: IDEA-40479
    (history, comments)

IDEA-40479

Identically named Web facets cause ID clashes in j2ee applicaton descriptor

0
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.

{code:xml}
<application>
<module id="Web">
...
</module>

<module id="Web">
...
</module>
</application>
{code}

Issue was resolved
Comments (1)
 
History (1)
 
Links
 
Sascha Weinreuter
  Sascha Weinreuter
23 Aug 2007 01:20
(2 years ago)
#permalink
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.