Spring 使用註解開發

2021-10-18 22:48:15 字數 1169 閱讀 3298

在spring4之後開發,必須匯入aop包

在使用註解必須匯入content約束

<?xml version="1.0" encoding="utf-8"?>

xmlns

=""xmlns:xsi

=""xmlns:context

=""xsi:schemalocation

="/spring-beans.xsd

/spring-context.xsd"

>

beans

>

包掃瞄

<

context:component-scan

base-package

="com.kuang.pojo"

/>

bean

@component

@component

("user"

)// 相當於配置檔案中

public

class

user

屬性如何注入

@value

衍生的註解

dao:@repository

service:@service

controller:@controller**@component三個衍生註解**

為了更好的進行分層,spring可以使用其它三個註解,功能一樣,目前使用哪乙個功能都一樣。

寫上這些註解,就相當於將這個類交給spring管理裝配了!

自動裝配(上面已講)

@autowired

@rerouce

@qualifier與@autowired配合使用

作用域@scope(作用範圍)

@controller

("user"

)@scope

("prototype"

)public

class

user

小結

xml與註解比較

xml與註解整合開發:推薦最佳實踐

作用:

Spring 使用註解開發

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

Spring使用註解開發

在對應的實體類上宣告 component註解即可將類註冊為乙個元件,從而被spring掃瞄到。component public class user public user string name public string getname public void setname string na...

Spring使用註解開發

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