Why does JPA require a no-arg constructor for domain objects?

Also notice that this is not provider dependent. It is a JPA specification.

JPA v2.0 JSR-317 and v2.1 JSR-338 says:

The entity class must have a no-arg constructor. The entity class may have other constructors as well. The no-arg constructor must be public or protected.


Because it often happens that the JPA provider has to instantiate your domain object dynamically. It cannot do so, unless there is a no-arg constructor - it can't guess what the arguments should be.