Ejemplo n.º 1
0
 public WeiboPost findPostByPid(String pid) {
   return weiboPostRepository.findByPid(pid);
 }
Ejemplo n.º 2
0
 public void saveWeiboPost(WeiboPost weiboPost) {
   weiboPostRepository.save(weiboPost);
 }
Ejemplo n.º 3
0
 public List<WeiboPost> findAllPosts() {
   return weiboPostRepository.findAll();
 }