diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-10-10 06:16:46 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2009-10-10 06:16:46 +0000 |
commit | b7878fb9752f9fdd41449e44743a87534ece73ce (patch) | |
tree | 7fc4e2a93ee70d8d8c9a2eb46a555b7cbc602c53 /sandbox/rfeng/helloworld-jsp-google-appengine/src | |
parent | f0d916a6263878537dde5f76922c6d24913885e2 (diff) |
Add calls to Datastore service
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@823799 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/rfeng/helloworld-jsp-google-appengine/src')
-rw-r--r-- | sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java b/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java index d7867c6a45..4257fea3b1 100644 --- a/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java +++ b/sandbox/rfeng/helloworld-jsp-google-appengine/src/sample/HelloworldServiceImpl.java @@ -29,6 +29,12 @@ import org.oasisopen.sca.annotation.Reference; import org.oasisopen.sca.annotation.Scope; import org.oasisopen.sca.annotation.Service; +import com.google.appengine.api.datastore.DatastoreService; +import com.google.appengine.api.datastore.Entity; +import com.google.appengine.api.datastore.EntityNotFoundException; +import com.google.appengine.api.datastore.Key; +import com.google.appengine.api.datastore.KeyFactory; +import com.google.appengine.api.datastore.Transaction; import com.google.appengine.api.memcache.MemcacheService; import com.google.appengine.api.urlfetch.HTTPResponse; import com.google.appengine.api.urlfetch.URLFetchService; @@ -48,6 +54,9 @@ public class HelloworldServiceImpl implements HelloworldService { @Reference protected MemcacheService memcacheService; + @Reference + protected DatastoreService datastoreService; + public String sayHello(String name) { User user = userService.getCurrentUser(); String id = (user == null) ? "" : user.getUserId(); @@ -59,6 +68,22 @@ public class HelloworldServiceImpl implements HelloworldService { stack.push(new Date().toString() + ": " + name); memcacheService.put("history", stack); + Transaction tx = datastoreService.beginTransaction(); + Entity entity = null; + Key key = KeyFactory.createKey("HitCounter", "countter"); + try { + entity = datastoreService.get(tx, key); + } catch (EntityNotFoundException e1) { + entity = new Entity(key); + entity.setProperty("counter", new Long(0)); + } + + Long count = (Long)entity.getProperty("counter"); + entity.setProperty("counter", new Long(count.longValue() + 1)); + + datastoreService.put(tx, entity); + tx.commit(); + String content = ""; try { HTTPResponse response = fetchService.fetch(new URL("http://tuscany.apache.org")); @@ -76,7 +101,9 @@ public class HelloworldServiceImpl implements HelloworldService { + content + "<p>History<hr>" + stack - + "</p>"; + + "</p><b>" + + count + + "</b>"; } @Init |