Search code examples
javadatabasegwtrequestfactory

gwt requestfactory view database


relating to the request factory in gwt.

How / Where can I view the entity records in the database (without using any code)?


Solution

  • RequestFactory is about sending entities and other objects, along with actions to be performed on them, between your clients and your server. Once the objects arrive on the server, it's up to you to manage their persistence. You can use JPA, JDO, Objectify, Morphia, etc. depending whether you want to use a SQL DB, AppEngine Datastore, MongoDB, etc.

    RequestFactory is very comparable to GWT-RPC if that can make it clearer for you.