1. 程式人生 > 實用技巧 >Spring-使用註解開發

Spring-使用註解開發

使用註解開發

目錄

在Spring4之後, 要使用註解開發, 必須要保證AOP的包匯入了(直接匯入spring-mvc包含此jar包)

使用註解需要匯入context約束, 增加註解的支援!

1. bean

@Component

元件, 放在類上,說明這個類被Spring管理了, 就是bean!

package com.wang.pojo;

import org.springframework.stereotype.Component;

//等價於       <bean id="user" class="com.wang.pojo.User"/>
//@Component    元件, bean的名字預設為小寫class
@Component
public class User {
    public String name = "wang sky";
}

2. 屬性如何注入

@value

放在屬性或者對應的Setter上

public class User {

    //相當於    <bean id="user" class="com.wang.pojo.User">
    //        <property name="name" value="sky wang"/>
    //    </bean>
    @Value("sky wang")
    public String name;
}

3. 衍生的註解

@Component 有幾個衍生的註解. 在Web開發中, 會按照MVC三層架構分層

  • dao層 @Repository
  • service層 @Service
  • controller層 @Controller

這四個註解的功能都是一樣的, 都是代表將某個類註冊到Spring容器中, 裝配bean

4. 自動裝配的註解

@Autowired 自動裝配,byType

配合@Qualified(value = "XXX") 可以實現byName的自動裝配

@Nullable 屬性標記後, 表示該屬性可以為null

@Resource 自動裝配, byName, 找不到Name會byType

5. 作用域

@Scope("singleton")

@Scope("prototype")等

與xml中配置的一致

6. 總結

xml與註解

  • xml 更加萬能, 適用於任何場合! 維護簡單方便
  • 註解 不是直接的類用不了, 維護相對複雜!

xml 與 註解的最佳實踐

  • xml 用來管理bean
  • 註解只負責完成屬性的注入
  • 我們在使用的過程中, 只需要注意一個問題: 必須讓註解生效, 就需要開啟註解的支援
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       https://www.springframework.org/schema/context/spring-context.xsd">

    <!--指定要掃描的包,這個包下的註解就會生效-->
    <context:component-scan base-package="com.wang"/>
    <context:annotation-config/>

<!--    <bean id="user" class="com.wang.pojo.User">-->
<!--        <property name="name" value="sky wang"/>-->
<!--    </bean>-->

</beans>