NullPointerException in JPA

前端 未结 2 1782
清酒与你
清酒与你 2020-12-21 21:57

I am creating a Java EE application using jpa.

I am getting the following error when the code is run on server

    [2/25/12 22:56:31:371 IST] 0000004         


        
2条回答
  •  滥情空心
    2020-12-21 22:22

    in such cases make sure you write the@EJB annotation before creating the object of the class containing the entity manager. the reason for the null pointer exception is generally because the entitymanager is not initialised. @EJB annotation does that.

    In your case the class where you declare an object of user class write @EJB above it.this should solve the problem.

提交回复
热议问题