Sometimes when I add RESTful Web services from database in my NetBeans' Web Application project, the JPA Controller and REST Facade are not creating, only the entity class is added. Do you know what can be the reason?
@EDIT: I just found out that ther is showing some exception:
java.lang.NullPointerException
at org.netbeans.modules.websvc.rest.codegen.EntityResourcesGenerator.generate(EntityResourcesGenerator.java:175)
[catch] at org.netbeans.modules.websvc.rest.wizard.EntityResourcesIterator$1.run(EntityResourcesIterator.java:130)
at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:1411)
at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:1991)
@EDIT 2:
I am mapping table by table, because the database is quite big and when I try to add all at once something goes wrong and the REST Facades are not created. So when I create a new REST service from a table that is not connected with others - everything is ok. But when the table is connected with others that I already added earlier and they need to be updated - only the entity class is created, there is no REST Facade.