我正在使用 Spring Social Twitter 从 twitter REST API 中获取搜索结果。
我得到了搜索结果,但是在 JSP 中显示它时,它不起作用。
控制器:
@RequestMapping(value = "/", method = RequestMethod.GET)
public ModelAndView test(HttpServletResponse response, Model model) throws IOException{
ModelAndView mov = new ModelAndView("home");
SearchResults results = twitter.searchOperations().search("#ithump");
List<Tweet> tweet = results.getTweets();
mov.addObject("tweets", tweet);
return mov;
}
JSP 显示:
<c:forEach items="${tweets}" var="tweet">
<li><img src="${tweet.profileImageUrl}" align="middle"/><c:out value="${tweet.createdAt}"/><br/><c:out value="${tweet.text}" escapeXml="false"/></li>
</c:forEach>
我只看到一个空的主页。如果我们需要单独解析列表或以不同的格式/视图将其发送到 JSP,有什么建议吗?
谢谢,