We have an existing WebLogic EJB application which has only weblogic-ejb-jar.xml and doesn't have any web.xml.
I have too include spring bean in the EJB. So I created a applicationContext.xml and put it in Meta-inf folder.
I have a set of bean definitions in that xml file. As per the Web app or Java EE we used contextlistener or got the applcation Context from the WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext);
But in the EJB how can I get the WebApplicationContext?
