javax.naming.NamingException:查找失败-Intellij Idea

时间:2019-06-08 18:36:44

标签: java java-ee glassfish ejb javabeans

我是Java EE的新手。最近,我正在使用无状态bean进行项目,但出现以下错误

Bean:

@Stateless(mappedName = "FlightServiceBean")
public class FlightServiceBean {

    public FlightServiceBean() {
    }

    // data

}

Servlet:

  private FlightServiceBean fs = null;

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    {

        PrintWriter out = response.getWriter();
        out.println("The flights details servlet has been called ...");

        try
        {
            Context context = new InitialContext();
            fs = (FlightServiceBean) context.lookup("java:global/ejb1/FlightServiceBean!com.airline.service.FlightServiceBean");
// here where I got the exception
        }
        catch (NamingException e)
        {
            System.out.println("Naming Exception has occurred when trying to lookup the flightService EJB");
            e.printStackTrace();
        }
  

javax.naming.NamingException:在SerialContext中查找“ java:global / ejb1 / FlightServiceBean!com.airline.service.FlightServiceBean”失败[myEnv = {java.naming.factory.initial = com.sun.enterprise.naming .impl.SerialInitContextFactory,java.naming.factory.state = com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl,java.naming.factory.url.pkgs = com.sun.enterprise.naming} [根异常是javax.naming.NameNotFoundException:ejb1]

This is my project structure

注意:我正在使用glassfish 5.0和jdk 1.8.0

1 个答案:

答案 0 :(得分:0)

您的EJB查找不正确。尝试将上面的行更改为

 fs = (FlightServiceBean) ic.lookup("java:comp/env/ejb/FlightServiceBean");

有关EJB查找的更多信息,请参阅此link