views:

25

answers:

1

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
+1 for the /_ah/admin link, That is cool.
Jacob