一、通過url對應bean
">
name= "/hello.do" class = "com.liujie.controller.hellocontroller">
以上配置,訪問/hello.do就會尋找name/id為/hello.do的bean,此類方式只適應於小型的應用系統。此類配置還可以使用
萬用字元。
二、為url分配bean
">
/hello.do">hellocontroller
hellocontroller" class="com.liujie.controller.hellocontroller">
此類配置還可以使用萬用字元(類似/*.do這種),訪問/hello.do時,spring會把請求分配給hellocontroller進行處理。
三、url匹配bean
">
四、註解
controller**中要寫對應的註解。
@controller
public class hellocontroller
}
第二講案例
一 使用登入cookie方法 使用第一講案例中查詢響應檔案的方式找到該頁面的doc檔案,獲取請求頭中的cookie資訊 將該資訊以鍵值對的形式儲存到請求頭引數中即可,請使用自己的cookie值 headers 爬取完整程式如下,可參考 import requests def local 1 準備引數...
controller配置彙總
1.通過url對應bean 以上配置訪問 hello.do就會尋找id為 hello.do的bean,此類方式僅使用小型應用系統 2.為url分配bean 使用乙個統一配置集合,對各個url對應的controller做關係對映 hellocontroller 此類配置還可以使用萬用字元,訪問 hel...
機器學習 第二講
多元線性回歸又稱 multivariate linear regression 現在介紹一種可以表示任意輸入變數的符號 現在定義假設函式的多變數形式,包含以下各種引數 h theta x theta 0 theta 1 x 1 theta 2 x 2 theta 3 x 3 cdots theta ...