SSM的查詢簡單練習+JSP

暴躁的程式猿啊發表於2020-12-08

一.頁面請求定義為以xxxxx.do結尾的

<a href="queryAll.do">查詢</a>

二.編寫控制層
類上加入@Controller註解
方法前面加上方法 @RequestMapping(“頁面請求的路徑”)

@RequestMapping("/queryAll")

返回值String
方法名沒有要求 引數 HttpServletRequest request

 public String queryAll(HttpServletRequest request){
        List<User> list = service.queryAll();
        request.setAttribute("listx",list);
        return "showAll.jsp";
    }

三.編寫Dao層

public List<User> queryAll();

修改Mybatis對映檔案

<select id="queryAll" resultType="許可權定類名">  
   查詢語句
</select>

四.編寫service層

public List<User> queryAll(){
    return dao.queryAll();
}

相關文章