You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We had a simple domain class and created RESTful API for it extending DocumentedRestfulController.
It works in development environment using H2 mem db, but fails in any other environment using H2 DB (mem or file, doesn't matter).
Either using the scaffolded templates or through REST POST, the first creation of new object is successful. After that all other requests result in 404 error (the request does not reach the controller, no error in logs).
If we instead extend just RestfulController all saves work fine.
The text was updated successfully, but these errors were encountered:
We had a simple domain class and created RESTful API for it extending DocumentedRestfulController.
It works in development environment using H2 mem db, but fails in any other environment using H2 DB (mem or file, doesn't matter).
Either using the scaffolded templates or through REST POST, the first creation of new object is successful. After that all other requests result in 404 error (the request does not reach the controller, no error in logs).
If we instead extend just RestfulController all saves work fine.
The text was updated successfully, but these errors were encountered: