1. 程式人生 > >Controller、Service、Dao、Autowired、RequestMapping、ResponseBody、Scope註解

Controller、Service、Dao、Autowired、RequestMapping、ResponseBody、Scope註解

Controller:控制層;

Service:服務層;

Dao:持久層;

Autowired:自動注入;

RequestMapping:請求對映

如:

@RequestMapping("/showitem/{itemId}")
    public String showItemParam(@PathVariable Long itemId,Model model){
        String string = itemParamItemService.getItemParamByItemId(itemId);
        model.addAttribute("itemParam", string);
        return "item";
    }

ResponseBody:Annotation that indicates a method return value should be bound to the web response body

Scope:作用域

待完成