使用註解方式配置Spring

2021-09-24 08:06:31 字數 741 閱讀 5777

在配置檔案中新增如下(spring會自動掃瞄改包下的所有註解):

//@component("user") //當分不清時用它

//@controller("user") //web層

//@service("user") //service層

@repository //dao層 //不寫名稱預設是類名小寫

@scope(scopename = "prototype") 預設是單例singleton | 多例prototype | request | session

public class user

@predestroy //指定摧毀方法,spring容器在關閉的時候 會銷毀所有容器中的 物件之前呼叫

public void destroy()

public user()

// 。。。省略get | set 方法

//}

屬性注入

@repository

public class car

public void setname(string name)

public string getcolor()

@value("bule")//通過set方法賦值,推薦使用

public void setcolor(string color)

}

spring 註解方式配置Bean

spring能夠從classpath下自動掃瞄,偵測和例項化具有特定註解的元件特定元件包括 component 基本註解,標示了乙個受spring管理的bean元件 respository 標識資料訪問層 dao層 元件 service 標識服務層 業務層 元件 controller 標識控制層 表...

使用註解配置Spring

從spring2.5開始,通過註解配置bean功能逐漸強大。spring boot更是把註解配置用到極致,將開發者工作量降至最低。xmlns xmlns xsi xmlns context xsi schemalocation spring beans.xsd spring context.xsd ...

註解方式配置Spring實現Ioc

1.首先需要配置spring,支援註解 加上這三句話在beans中 配置xml命名空間 xmlns context spring context 4.1.xsd 提示一下 xsd檔案,是用來約束xml檔案的語法和格式 約束xml檔案,有兩種標準 dtd dtd schema xsd 2.初始化和裝配...