I have a spring 2.x config file that contains a <jee:jndi-lookup id="xxxxxDS"..../>
This is working fine but IntelliJ marks it as wrong:
If you check the documentation, this attribute is meant to be specified,
the xsd (http://www.springframework.org/schema/jee/spring-jee-2.0.xsd)
says that jndi-lookup extends jndiLocatingType which in turns extends beans:identifiedType that contains:
<xsd:attribute name="id" type="xsd:ID">
So why is IntelliJ saying that I can't have an id there ? I can't even turn it off. As you can see in the screenshot...
I'm using IDEA 12.0.2 on a Mac if that has anything to do with it.