Spring使用註解開發

2021-10-05 19:33:29 字數 1650 閱讀 5371

在對應的實體類上宣告@component註解即可將類註冊為乙個元件,從而被spring掃瞄到。

@component

public

class

user

public

user

(string name)

public string getname()

public

void

setname

(string name)

@override

public string tostring()

';}}

2. @value

@value()註解可以為屬性注入值

@value

("jack"

)private string name;

3. @repository

@repository

public

inte***ce

4. @service

@service

public

inte***ce

5. @controller

@controller跟@service,@repository,@component作用相同,但卻是加在controller層上的註解

@controller

public

class

usercontroller

6. @scope

@scope指定在類上宣告作用域

@component

@scope

("singletion"

)public

class

user

public

user

(string name)

public string getname()

public

void

setname

(string name)

@override

public string tostring()

';}}

Spring 使用註解開發

屬性的注入 component 元件,放在類上,說明這個類被spring管理了,就是bean component 元件 等價於 component public class user value 等價於 component public class user衍生註解 這四個註解功能都是一樣的,都是代...

Spring使用註解開發

在spring4之後,要使用註解開發,必須要保證aop的包匯入了 使用註解需要匯入context約束,增加註解的支援!xmlns xmlns xsi xmlns context xsi schemalocation context annotation config beans 1.bean com...

Spring 使用註解開發

在spring4之後開發,必須匯入aop包 在使用註解必須匯入content約束 xmlns xmlns xsi xmlns context xsi schemalocation spring beans.xsd spring context.xsd beans 包掃瞄 context compon...