Spring註解的含義

2021-08-25 14:42:52 字數 523 閱讀 5394

就我目前用到的來說說spring註解的含義:

@controller

負責註冊乙個bean 到spring 上下文中(實際上就是乙個加工廠)

註解為控制器指定可以處理哪些 url 請求

@responsebody

該註解用於將controller的方法返回的物件,寫入到response物件的body資料區(不跳轉直接返回物件)

@requestparam 

在處理方法入參處使用 @requestparam 可以把請求參 數傳遞給請求方法

@service

• 例如

public class softcreateserviceimpl implements isoftcreateservice {}

@service 負責註冊乙個bean 到spring 上下文中,bean 的id 預設為類名稱開頭字母小寫(複雜邏輯處理)

@autowired

通過 @autowired的使用來消除 set ,get方法。

這是目前我使用到的

Spring註解 Import註解

常用的匯入註解分類 註冊自己寫的類service dao controller可用包掃瞄 元件標註註解 controller service repository component bean 匯入的第三方包裡面的元件 import 快速給容器中匯入乙個元件 1 import 要匯入到容器中的元件 ...

spring 基於註解的spring配置

spring是乙個基於ioc和aop的結構j2ee系統的框架 ioc 反轉控制 是spring的基礎,inversion of control 簡單說就是建立物件由以前的程式設計師自己new 構造方法來呼叫,變成了交由spring建立物件 di 依賴注入 dependency inject.簡單地說...

spring的註解詳解

entity 標記實體類 repository 用於標註資料訪問元件,即dao元件 service用於標註業務層元件 controller用於標註控制層元件 component泛指元件,當元件不好歸類的時候,我們可以使用這個註解進行標註。autowired 自動注入 beforeclass註解的方法...