@RequestMapping(value="/weibo")
public class WeiboController {
@RequestMapping(method=RequestMethod.GET)
public @ResponseBody List<WeiboPost> getRecentWeiboPosts() {
WeiboService ws = new WeiboServiceImpl();
List<WeiboPost> result
= ws.getRecentUserPost(WeiboServiceImpl.myUid);
return result;
}