Spring常用註解(一)

2021-10-01 21:43:00 字數 592 閱讀 4113

1.@component

2.@controller 一般用於表現層註解,控制器的宣告。

3.@service 一般用於業務層

4.@repository 一般用於持久層(dao層)

1.@autowired : 由spring提供

2.@inject:由jsr-330提供

3.@resource:由jsr-250提供

4.@qualifier

5.@value

1.@configuration:宣告當前類為配置類,相當於xml形式的spring配置

位置:類上

2.@bean:註解在方法上,宣告當前方法的返回值為乙個bean,替代xml中的方式

3.@componentscan : 用於對component進行掃瞄,相當於xml中的

4.@wishlyconfiguration :是@configuration與@componentscan的組合註解,可以替代這兩個註解

5.@import

6.@propertysource

1.@scope

1.@postconstruct

2.@predestroy

Spring常用註解

spring常用註解 1 引入context命名空間 在spring的配置檔案中 配置檔案如下 xml xmlns context spring context 2.5.xsd 開啟配置 spring 會自動掃瞄cn.pic包下面有註解的類,完成bean的裝配。xml xmlversion 1.0 ...

Spring常用註解

在spring中常用的註解 autowired註解 不推薦使用,建議使用 resource autowired可以對成員變數 方法和建構函式進行標註,來完成自動裝配的工作。autowired的標註位置不同,它們都會在spring在初始化這個bean時,自動裝配這個屬性。要使 autowired能夠工...

spring常用註解

1 引入context命名空間 在spring的配置檔案中 配置檔案如下 xml 收藏 xmlns context spring context 2.5.xsd 開啟配置 spring 會自動掃瞄cn.pic包下面有註解的類,完成bean的裝配。xml xmlns xmlns xsi xmlns c...