@RequestMapping的簡單理解

@Controller
public class ItemController {
    @Autowired
    private ItemService itemService;
    獲取路徑參數.../item/*
    @RequestMapping("/item/{itemId}")
    @ResponseBody
//    HTTP Status 404 - /WEB-INF/jsp/item/536563.jsp
//    和晶晶的正相反,應該是導入數據庫的問題
//    出現了manager的pom.xml文件忘記添加依賴common了
//此版本還刪除了common中的一些包com.taotao.common,在commom的java包下,晶晶版保留
//    @PathVariable是從路徑中取參數
    public TbItem getItemById(@PathVariable Long itemId) {
        TbItem tbItem = itemService.geTbItemById(itemId);
        return tbItem;
    }
}
    /**
     * 通常爲首頁/ */
    @RequestMapping("/")
    public String showIndex() {
        return "index";
    }
    /**
     * 只要下面haha刪除對應位置自定義名稱一致就行,隨便命名
     * @param page
     * @return
     */
    @RequestMapping("/{haha}")
    public String showpage(@PathVariable String haha) {
        return haha;
    }
相關文章
相關標籤/搜索