Target Unreachable, identifier resolved to null

前端 未结 4 471
走了就别回头了
走了就别回头了 2021-01-21 03:49

I\'m trying to run j2EE project on external server. Project was made in NetBeans (6.7.1) and when I run it from there, everything\'s going fine (I run it on GlassFish v3 server)

4条回答
  •  一生所求
    2021-01-21 04:37

    Had the same issue. Problem was wrong import. Instead of javax.enterprise.context.SessionScoped, I had javax.faces.bean.SessionScoped which didn't work and was throwing mentioned exception.

提交回复
热议问题