Reputation: 20136
I have been debugging an app in eclipse/jetty, and it has a bunch of invalid objects. How do i clear them out? Where are the data entities actually stored when running on your local machine??
Upvotes: 1
Views: 137
Reputation: 14187
If you want to delete the whole (local) datastore, delete this file:
./WEB-INF/appengine-generated/local_db.bin
.
Or, you can delete specific objects with delete calls from JDO/JPA/whatever datastore api you are using.
As a third alternative, you can try viewing your data using the admin viewer:
http://localhost:8080/_ah/admin
Since "invalid objects" is kind of vague, you'll have to decide which of these options works best for you.
Upvotes: 5