Does IntelliJ support weblogic-ejb-jar.xml deployment descriptor correctly?
I've been using IntelliJ for a couple of years and I'm just now starting to get into Java EE with Weblogic. I've created my first bean and after digging around, I've found that I needed to add to the EJB facet, a "WebLogic EJB Module Deployment Descriptor", which creates a weblogic-ejb-jar.xml file.
However, it just creates an empty file that looks like this:
It appears to automatically put the bean information in for ejb-jar.xml, but weblogic-ejb-jar.xml is left untouched with no bean information in there. Is this normal? Am I expected to manually add everything? What might I be doing wrong.
Please excuse this EJB beginner...
Jack
请先登录再写评论。
It looks like my screen snapshot isn't showing up for some reason.
The weblogic-ejb-jar.xml looks like this with no ejb bean information:
<weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/90" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.bea.com/ns/weblogic/90
http://www.bea.com/ns/weblogic/90/weblogic-ejb-jar.xsd">
</weblogic-ejb-jar>