Examples of SampleContent


Examples of com.fengjing.framework.springmvc.model.SampleContent

  @RequestMapping(value="/rss")
  public ModelAndView rss(){
   
    List<SampleContent> items = new ArrayList<SampleContent>();
    
    SampleContent content  = new SampleContent();
    content.setTitle("Spring MVC Tutorial 1");
    content.setUrl("http://www.mkyong.com/spring-mvc/tutorial-1");
    content.setSummary("Tutorial 1 summary ...");
    content.setCreatedDate(new Date());
    items.add(content);
    SampleContent content2  = new SampleContent();
    content2.setTitle("Spring MVC Tutorial 2");
    content2.setUrl("http://www.mkyong.com/spring-mvc/tutorial-2");
    content2.setSummary("Tutorial 2 summary ...");
    content2.setCreatedDate(new Date());
    items.add(content2);
    ModelAndView mav = new ModelAndView();
    mav.setViewName("rssViewer");
    mav.addObject("feedContent", items);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.