@controller 用於說明這個類的例項是乙個控制器,可以同時處理多個請求
@responsebody 再返回物件或者字串的時候,自動轉換成 json 給前端
@restcontroller 相當於 @responsebody + @controller
// @controller 用於說明這個類的例項是乙個控制器,可以同時處理多個請求
@controller
public class hellocontroller
}/* 下面這一種方法和上面的方法是一樣的 */
@restcontroller
public class hellocontroller
}
@restcontroller
public class hellocontroller
}
配置多對一進行對映
@restcontroller
public class hellocontroller
}
springboot中的註解1
restcontroller註解等價於 responsebody controller。restcontroller和 controller的共同點是都用來表示spring某個類是否可以接收http請求。二者區別 restcontroller無法返回指定頁面,而 controller可以 前者可以直...
springBoot學習之註解小記
controller responsebody restcontroller 當方法或者類上增加了 responsebody註解時,所返回的引數為json格式。當沒有此註解時,引數會以鍵值對的形式傳入。data 提供該類所有屬性的getting和setting方法。cookievalue 用來獲取c...
學習筆記之springboot註解
2,controller 程式入口 import org.springframework.stereotype.controller 處理請求位址對映,可以用在類或方法上。用於類上,表示類中的所有響應請求的方法都是以該位址作為父路徑。4,responsebody import org.springf...