I am trying to develop one application which shows few data of all candidate. I am using spring and Ejb. My web portion is handled by spring and service through EJB and connectivity through hibernate. But when ever i am trying to start the the server its showing error,

org.springframework.beans.factory.BeanCreationExce ption: Error creating bean with name 'Manager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is javax.naming.NameNotFoundException: ejb not bound

I know i am doing something wrong in applicationContext.xml where spring is integrating with EJB. Can any body help me out.I am in a serious help as I am stuck on this from past 3 days. My applicationContext.xml is

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:jee="http://www.springframework.org/schema/jee"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
       http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd">


       <bean id="Manager" class="org.springframework.jndi.JndiObjectFactoryBean" >
        <property name="jndiName" value="java:comp/env/ejb/DAO" />

    </bean> 

 </beans>

For the ref. I am adding rest of my code also. Please Help!!!!

My Controller
import java.util.ArrayList;
import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import ICL.EJB.model.Candidate;
import ICL.EJB.service.Manager;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.multiaction.MultiActionController;


public class HomePageController extends MultiActionController{
    Manager manager;
    public ModelAndView handleRequest(HttpServletRequest req,HttpServletResponse res)   throws Exception{

        //Candidate candidate;
        List<Candidate> candidate = new ArrayList();

        candidate = getManager().getCandidate();
        return new ModelAndView("homePage","candidate",candidate);
    }

    public Manager getManager() {
        return manager;
    }

    public void setManager(Manager manager) {
        this.manager = manager;
    }
}

Remote Interface(This is EJB portion and in jar)

import javax.ejb.Remote;
import java.util.List;
import ICL.EJB.model.Candidate;

@Remote
public interface Manager {

    public List<Candidate> getCandidate() throws Exception;

}

Interface Implementation

    import javax.ejb.CreateException;
import java.util.List;
    import javax.ejb.Stateless;
    import org.springframework.ejb.support.AbstractStatelessSessionBean;

    import ICL.EJB.dao.DAO;
    import ICL.EJB.model.Candidate;
    import ICL.EJB.service.Manager;

    @Stateless(mappedName = "ejb/DAO")
    public class ManagerImpl extends AbstractStatelessSessionBean implements Manager {
        DAO mDAO;

        public List<Candidate> getCandidate()throws Exception {
            try{
                return mDAO.getCandidate();
            }
            catch(Exception e)
            {
                throw e;
            }
        }

        protected void onEjbCreate() throws CreateException {

               mDAO = (DAO)  getBeanFactory().getBean("mDAO");
             }


    }

My ejb-jar.xml

<ejb-jar version="3.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_3_0.xsd">  
   <enterprise-beans>
    <session>
         <ejb-name>ManagerImpl</ejb-name>
         <remote>ICL.EJB.service.Manager</remote>
         <ejb-class>ICL.EJB.serviceImpl.ManagerImpl</ejb-class>
         <session-type>Stateless</session-type>

         <env-entry>
            <env-entry-name>ejb/BeanFactoryPath</env-entry-name>
            <env-entry-type>java.lang.String</env-entry-type>
            <env-entry-value>domainContext.xml</env-entry-value>
            </env-entry>
      </session>
   </enterprise-beans>
</ejb-jar>

Rest of my file is domaincontext containing connection and one xml file which contains mapping of jsp with controller, which calls applicationContext bean.

Can any help me out What wromg i m doing????????!!!!!!!

I am still facing the same problem and its now around 10 days. Can anybody help me out plzzzzzzzzzz????

link|improve this question

43% accept rate
The java:comp/env/ejb/DAO JDNI name is not correct. Can you query this EJB manually (using InitialLookup class)? – Tomasz Nurkiewicz Dec 16 '11 at 11:50
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.