快速业务通道

Eclipse环境下的OpenSocial开发 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-14
on<Person>(       result, options.getFirst(), totalSize, options.getMax()));    } catch (JSONException je) {     throw new ProtocolException(       HttpServletResponse.SC_INTERNAL_SERVER_ERROR, je         .getMessage(), je);    }   }   public Future<Person> getPerson(UserId id, Set<String> fields,     SecurityToken token) throws ProtocolException {    try {     //Read people data from JSON table.     JSONArray people = db.getJSONArray(PEOPLE_TABLE);     for (int i = 0; i < people.length(); i++) {      JSONObject person = people.getJSONObject(i);      if (id != null         && person.get(Person.Field.ID.toString()).equals(          id.getUserId(token))) {       Person personObj = filterFields(person, fields,         Person.class);       return ImmediateFuture.newInstance(personObj);      }     }     throw new ProtocolException(HttpServletResponse.SC_BAD_REQUEST,       "Person not found");    } catch (JSONException je) {     throw new ProtocolException(       HttpServletResponse.SC_INTERNAL_SERVER_ERROR, je         .getMessage(), je);    }   }      ……   }

Eclipse环境下的OpenSocial开发(4)

时间:2011-10-22 IBM 李三红

从清单 1 可以看到,SocialTestJsonPersonService 实现了 PersonService 两个接口方法 getPeople 及其 getPerson。getPeople 根据传入参数 userIds,返回相应于该 ID 列表的用户列表,而 getPerson 根据传入参数 id,返回相应于该 ID 的用户。

注意,Shindig 依赖 Guice 做动态的依赖注入 (dependency Injection),我们需要在 org.apache.shindig.social.sample.SampleModule 里指示 Guice 把 PersonService 绑定到 SocialTestJsonPersonService 实现,如清单 2 所示:

清单 2. SampleModule Class

public class SampleModule extends SocialApiGuiceModule {   @Override   protected void configure() {    super.configure();    bind(String.class).annotatedWith(Names.named("shindig.canonical.json.db"))      .toInstance("sampledata/canonicaldb.json");    bind(String.class).annotatedWith(Names.named("shindig.socialtest.json.db"))    .toInstance("sampledata/socialtestdb.json");    bind(ActivityService.class).to(JsonDbOpensocialService.class);    bind(AppDataService.class).to(JsonDbOpensocialService.class);    //bind(PersonService.class).to(JsonDbOpensocialService.class);    bind(PersonService.class).to(SocialTestJsonPersonService.class);    bind(MessageService.class).to(JsonDbOpensocialService.class);    bind(OAuthDataStore.class).to(SampleOAuthDataStore.class);    // We do this so that jsecurity realms can get access to the  jsondbservice singleton    requestStaticInjection(SampleRealm.class);   }   ……   }

从清单 2 中,还可以看到,标记为"shindig.socialtest.json.db"的字符串绑定到 了"sampledata/socialtestdb.json&quo

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号