Package com.apress.prospring3.springblog.domain

Examples of com.apress.prospring3.springblog.domain.Comment


 
  @RequestMapping(value = "/{id}", method = RequestMethod.GET)
    public String show(@PathVariable("id") Long id, Model uiModel) {
        Entry entry = entryService.findById(id);
    uiModel.addAttribute("entry", entry);
        UploadItem uploadItem = new UploadItem();
        uploadItem.setBlogId(entry.getId());
        uiModel.addAttribute("uploadItem", uploadItem);
        return "blogs/show";
   
View Full Code Here

TOP

Related Classes of com.apress.prospring3.springblog.domain.Comment

Copyright © 2018 www.massapicom. 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.