when I try to save a java file in my project the following error occurs.
Failed to (re)build the JAX-RS metamodel for projet TestApp java.lang.NullPointerException
It only occurs when I create the default constructor so
public class Account {
public Account () {}
}
gets the error, while
public class Account {
}
does not get it.
I was using the jboss-javaee6-webapp-blank-archetype to create my project