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??
+4
A:
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.
Peter Recore
2010-07-14 16:17:15
+1 for the /_ah/admin link, That is cool.
Jacob
2010-07-14 23:13:21