Spring 框架學(xué)習(xí)

Spring 復(fù)習(xí)

[toc]

spring介紹

三層架構(gòu)中spring位置雕崩,連接三層赤拒。


  • spring一站式框架
    • 正是因?yàn)閟pring框架性質(zhì)是屬于容器性質(zhì)的.
    • 容器中裝什么對(duì)象就有什么功能.所以可以一站式.例如:容器中有 http 對(duì)象辽社,那么就能操作請(qǐng)求響應(yīng),容器中有 數(shù)據(jù)庫(kù) 對(duì)象内狗,那么就能操作數(shù)據(jù)庫(kù)凫碌。
    • 不僅不排斥其他框架,還能幫其他框架管理對(duì)象.
    • aop支持
    • ioc思想'
    • spring jdbc
    • aop 事務(wù)
    • junit 測(cè)試支持



spring 入門(mén)搭建

1.導(dǎo)包

日志包


com.springsource.org.apache.log4j-1.2.15.jar(可選,老版本可能需要這個(gè)包)

2.創(chuàng)建一個(gè)對(duì)象

3.書(shū)寫(xiě)配置注冊(cè)對(duì)象到容器

位置任意(建議放到src下),配置文件名任意(建議applicationContext.xml)

4.代碼測(cè)試



IOC

概念

IoC -- Inverse of Control有送,控制反轉(zhuǎn)淌喻,將對(duì)象的創(chuàng)建權(quán)反轉(zhuǎn)給Spring!雀摘!

以前的對(duì)象都是開(kāi)發(fā)人員手動(dòng)創(chuàng)建和維護(hù)裸删,包括依賴(lài)關(guān)系也是自己注入。

DI -- Dependency Injection阵赠,依賴(lài)注入涯塔。

實(shí)現(xiàn) IOC 思想需要 DI 做支持肌稻。
在Spring框架負(fù)責(zé)創(chuàng)建Bean對(duì)象時(shí),動(dòng)態(tài)的將依賴(lài)對(duì)象注入到Bean組件中伤塌。

  1. ApplicationContext接口

    • 使用ApplicationContext工廠(chǎng)的接口灯萍,使用該接口可以獲取到具體的Bean對(duì)象
    • 該接口下有兩個(gè)具體的實(shí)現(xiàn)類(lèi)
      • ClassPathXmlApplicationContext -- 加載類(lèi)路徑下的Spring配置文件
      • FileSystemXmlApplicationContext -- 加載本地磁盤(pán)下的Spring配置文件
  2. BeanFactory工廠(chǎng)(是Spring框架早期的創(chuàng)建Bean對(duì)象的工廠(chǎng)接口)

    • 使用BeanFactory接口也可以獲取到Bean對(duì)象

BeanFactory和ApplicationContext的區(qū)別

  • BeanFactory -- BeanFactory采取延遲加載,第一次getBean時(shí)才會(huì)初始化Bean

  • ApplicationContext -- 在加載applicationContext.xml時(shí)候就會(huì)創(chuàng)建具體的Bean對(duì)象的實(shí)例每聪,還提供了一些其他的功能旦棉。

    • 事件傳遞
    • Bean自動(dòng)裝配
    • 各種不同應(yīng)用層的Context實(shí)現(xiàn)

結(jié)論:

web開(kāi)發(fā)中,使用applicationContext. 在資源匱乏的環(huán)境可以使用BeanFactory.



spring配置詳解

Bean元素

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd ">


    <!-- 將User對(duì)象交給spring容器管理 -->
    <!-- Bean元素:使用該元素描述需要spring容器管理的對(duì)象
            class屬性:被管理對(duì)象的完整類(lèi)名.
            name屬性:給被管理的對(duì)象起個(gè)名字.獲得對(duì)象時(shí)根據(jù)該名稱(chēng)獲得對(duì)象.  
                    可以重復(fù).可以使用特殊字符.
            id屬性: 與name屬性一模一樣. 
                    名稱(chēng)不可重復(fù).不能使用特殊字符.
            結(jié)論: 盡量使用name屬性.
      -->
    <bean  name="user" class="cn.itcast.bean.User" ></bean>
</beans>

Bean元素進(jìn)階

scope屬性

  • singleton(默認(rèn)值):單例對(duì)象.被標(biāo)識(shí)為單例的對(duì)象在spring容器中只會(huì)存在一個(gè)實(shí)例
  • prototype:多例原型.被標(biāo)識(shí)為多例的對(duì)象,每次再獲得才會(huì)創(chuàng)建.每次創(chuàng)建都是新的對(duì)象.整合struts2時(shí),ActionBean必須配置為多例的.
  • request:web環(huán)境下.對(duì)象與request生命周期一致.
  • session:web環(huán)境下,對(duì)象與session生命周期一致.

生命周期屬性

  • init-method

    配置一個(gè)方法作為生命周期初始化方法.spring會(huì)在對(duì)象創(chuàng)建之后立即調(diào)用.

  • destory-method

    配置一個(gè)方法作為生命周期的銷(xiāo)毀方法.spring容器在關(guān)閉并銷(xiāo)毀所有容器中的對(duì)象之前調(diào)用.


spring創(chuàng)建對(duì)象的方式

  1. 空參構(gòu)造方式


  2. 靜態(tài)工廠(chǎng)(了解)



  1. 實(shí)例工廠(chǎng)(了解)



spring的分模塊配置



spring屬性注入

注入方式

set方法注入

<!-- set方式注入: -->
<bean  name="user" class="cn.itcast.bean.User" >
    <!--值類(lèi)型注入: 為User對(duì)象中名為name的屬性注入tom作為值 -->
    <property name="name" value="tom" ></property>
    <property name="age"  value="18" ></property>
    <!-- 引用類(lèi)型注入: 為car屬性注入下方配置的car對(duì)象 -->
    <property name="car"  ref="car" ></property>
</bean>

<!-- 將car對(duì)象配置到容器中 -->
<bean name="car" class="cn.itcast.bean.Car" >
    <property name="name" value="蘭博基尼" ></property>
    <property name="color" value="黃色" ></property>
</bean>

構(gòu)造函數(shù)注入

public class User {
    private String name;
    private Integer age;
    private Car car;
    
    public User(String name, Car car) {
        System.out.println("User(String name, Car car)!!");
        this.name = name;
        this.car = car;
    }
。药薯。绑洛。
} 


<!-- 構(gòu)造函數(shù)注入 -->
<bean name="user2" class="cn.itcast.bean.User" >
    <!-- name屬性: 構(gòu)造函數(shù)的參數(shù)名 -->
    <!-- index屬性: 構(gòu)造函數(shù)的參數(shù)索引,房子多個(gè)相同類(lèi)型的參數(shù)童本,用于區(qū)分 -->
    <!-- type屬性: 構(gòu)造函數(shù)的參數(shù)類(lèi)型-->
    <constructor-arg name="name" index="0" type="java.lang.Integer" value="999"  ></constructor-arg>
    <constructor-arg name="car" ref="car" index="1" ></constructor-arg>
</bean>

p名稱(chēng)空間注入

<!-- p名稱(chēng)空間注入, 走set方法
1.導(dǎo)入P名稱(chēng)空間  xmlns:p="http://www.springframework.org/schema/p"
2.使用p:屬性完成注入
    |-值類(lèi)型: p:屬性名="值"
    |-對(duì)象類(lèi)型: p:屬性名-ref="bean名稱(chēng)"
 -->
<bean  name="user3" class="cn.itcast.bean.User" p:name="jack" p:age="20" p:car-ref="car"  >
</bean>

spel注入

<!-- 
    spel注入: spring Expression Language sping表達(dá)式語(yǔ)言
    #{user.name} 表示上面的 user 的 《bean name 屬性》
 -->
<bean  name="user4" class="cn.itcast.bean.User" >
        <property name="name" value="#{user.name}" ></property>
        <property name="age" value="#{user3.age}" ></property>
        <property name="car" ref="car" ></property>
</bean>

復(fù)雜類(lèi)型注入

數(shù)組

<!-- 如果數(shù)組中只準(zhǔn)備注入一個(gè)值(對(duì)象),直接使用value|ref即可 
<property name="arr" value="tom" ></property>
-->
<!-- array注入,多個(gè)元素注入 -->
<property name="arr">
    <array>
        <value>tom</value>
        <value>jerry</value>
        <ref bean="user4" />
    </array>
</property>

List

<!-- 如果List中只準(zhǔn)備注入一個(gè)值(對(duì)象),直接使用value|ref即可 
<property name="list" value="jack" ></property>-->
<property name="list"  >
    <list>
        <value>jack</value>
        <value>rose</value>
        <ref bean="user3" />
    </list>
</property>

Map

<!-- map類(lèi)型注入 -->
<property name="map"  >
    <map>
        <entry key="url" value="jdbc:mysql:///crm" ></entry>
        <entry key="user" value-ref="user4"  ></entry>
        <entry key-ref="user3" value-ref="user2"  ></entry>
    </map> 
</property>

Properties

<!-- prperties 類(lèi)型注入 -->
<property name="prop"  >
    <props>
        <prop key="driverClass">com.jdbc.mysql.Driver</prop>
        <prop key="userName">root</prop>
        <prop key="password">1234</prop>
    </props>
</property>



使用注解配置spring

步驟

導(dǎo)包4+2+spring-aop

  1. 為主配置文件引入新的命名空間(約束)
  2. 開(kāi)啟使用注解代理配置文件


  3. 在類(lèi)中使用注解配置

類(lèi)中使用注解配置

將對(duì)象注冊(cè)到容器
//<bean name="user" class="cn.itcast.bean.User"/> = @Component("user")
//@Component("user") //早期使用
//@Service("user") // service層
//@Controller("user") // web層
//@Repository("user")// dao層
public class User {
    private String name;
    private Integer age;
    private Car car;
    
    public Car getCar() {
        return car;
    }
修改對(duì)象的作用范圍
//指定對(duì)象的作用范圍
@Scope(scopeName="singleton")
public class User {
值類(lèi)型注入

通過(guò)反射的Field賦值,破壞了封裝性

@Value("18")
private Integer age;

通過(guò)set方法賦值,推薦使用.

@Value("tom")   
public void setName(String name) {
    this.name = name;
}
引用類(lèi)型注入
@Autowired //自動(dòng)裝配
private Car car;

默認(rèn)找同名的裝配上

@Autowired //自動(dòng)裝配
//問(wèn)題:如果匹配多個(gè)類(lèi)型一致的對(duì)象.將無(wú)法選擇具體注入哪一個(gè)對(duì)象.
@Qualifier("car2")//使用@Qualifier注解告訴spring容器自動(dòng)裝配哪個(gè)名稱(chēng)的對(duì)象
private Car car;

當(dāng)多個(gè)對(duì)象是同一個(gè)類(lèi)真屯,需要指定某個(gè)對(duì)象,@Autowired + @Qualifier()

@Resource(name="car")//手動(dòng)注入,指定注入哪個(gè)名稱(chēng)的對(duì)象
private Car car;

當(dāng)多個(gè)對(duì)象是同一個(gè)類(lèi)穷娱,需要指定某個(gè)對(duì)象绑蔫,@Resource()

初始化和銷(xiāo)毀方法
@Repository("user")
public class User {
    private String name;
    
    @Value("18")
    private Integer age;
    ... ...
    
    @PostConstruct //在對(duì)象被創(chuàng)建后調(diào)用.init-method
    public void init(){
        System.out.println("我是初始化方法!");
    }
    @PreDestroy //在銷(xiāo)毀之前調(diào)用.destory-method
    public void destory(){
        System.out.println("我是銷(xiāo)毀方法!");
    }
}

spring與junit整合測(cè)試

  1. 導(dǎo)包

  2. 配置注解

    //幫我們創(chuàng)建容器
    @RunWith(SpringJUnit4ClassRunner.class)
    //指定創(chuàng)建容器時(shí)使用哪個(gè)配置文件
    @ContextConfiguration("classpath:applicationContext.xml")
    public class Demo {
        
        //將名為user的對(duì)象注入到u變量中
        @Resource(name="user")
        private User u;
        
        @Test
        public void fun1(){
            System.out.println(u);
        }
    }
    
  3. 測(cè)試



spring中的aop

aop思想介紹



spring中的aop概念

spring實(shí)現(xiàn)aop的原理

  • 動(dòng)態(tài)代理(優(yōu)先)
    被代理對(duì)象必須要實(shí)現(xiàn)接口,才能產(chǎn)生代理對(duì)象.如果沒(méi)有接口將不能使用動(dòng)態(tài)代理技術(shù)
  • cglib代理(沒(méi)有接口)
    第三方代理技術(shù),cglib代理.可以對(duì)任何類(lèi)生成代理.代理的原理是對(duì)目標(biāo)對(duì)象進(jìn)行繼承代理. 如果目標(biāo)對(duì)象被final修飾.那么該類(lèi)無(wú)法被cglib代理.

aop名詞學(xué)習(xí)



spring中的aop演示

xml配置(步驟)

  1. 導(dǎo)包4+2

    • spring的aop包
      • spring-aspects-4.2.4.RELEASE.jar
      • spring-aop-4.2.4.RELEASE.jar
    • spring需要第三方aop包
      • com.springsource.org.aopalliance-1.0.0.jar
      • com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
  2. 準(zhǔn)備目標(biāo)對(duì)象

    public class UserServiceImpl implements UserService {
        @Override
        public void save() {
            System.out.println("保存用戶(hù)!");
            //int i = 1/0;
        }
        @Override
        public void delete() {
            System.out.println("刪除用戶(hù)!");
        }
        @Override
        public void update() {
            System.out.println("更新用戶(hù)!");
        }
        @Override
        public void find() {
            System.out.println("查找用戶(hù)!");
        }
    }
    
  3. 準(zhǔn)備通知

    //通知類(lèi)
    public class MyAdvice {
        
        //前置通知  
    //      |-目標(biāo)方法運(yùn)行之前調(diào)用
        //后置通知(如果出現(xiàn)異常不會(huì)調(diào)用)
    //      |-在目標(biāo)方法運(yùn)行之后調(diào)用
        //環(huán)繞通知
    //      |-在目標(biāo)方法之前和之后都調(diào)用
        //異常攔截通知
    //      |-如果出現(xiàn)異常,就會(huì)調(diào)用
        //后置通知(無(wú)論是否出現(xiàn) 異常都會(huì)調(diào)用)
    //      |-在目標(biāo)方法運(yùn)行之后調(diào)用
    //----------------------------------------------------------------
        //前置通知
        public void before(){
            System.out.println("這是前置通知!!");
        }
        //后置通知
        public void afterReturning(){
            System.out.println("這是后置通知(如果出現(xiàn)異常不會(huì)調(diào)用)!!");
        }
        //環(huán)繞通知
        public Object around(ProceedingJoinPoint pjp) throws Throwable {
            System.out.println("這是環(huán)繞通知之前的部分!!");
            Object proceed = pjp.proceed();//調(diào)用目標(biāo)方法
            System.out.println("這是環(huán)繞通知之后的部分!!");
            return proceed;
        }
        //異常通知
        public void afterException(){
            System.out.println("出事啦!出現(xiàn)異常了!!");
        }
        //后置通知
        public void after(){
            System.out.println("這是后置通知(出現(xiàn)異常也會(huì)調(diào)用)!!");
        }
    }
    
  4. 配置進(jìn)行織入,將通知織入目標(biāo)對(duì)象中

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd ">
    
    <!-- 準(zhǔn)備工作: 導(dǎo)入aop(約束)命名空間 -->
    <!-- 1.配置目標(biāo)對(duì)象 -->
        <bean name="userService" class="cn.itcast.service.UserServiceImpl" ></bean>
    <!-- 2.配置通知對(duì)象 -->
        <bean name="myAdvice" class="cn.itcast.d_springaop.MyAdvice" ></bean>
    <!-- 3.配置將通知織入目標(biāo)對(duì)象 -->
        <aop:config>
            <!-- 配置切入點(diǎn) 
                public void cn.itcast.service.UserServiceImpl.save() 
                void cn.itcast.service.UserServiceImpl.save()
                * cn.itcast.service.UserServiceImpl.save()
                * cn.itcast.service.UserServiceImpl.*()
                
                * cn.itcast.service.*ServiceImpl.*(..)
                * cn.itcast.service..*ServiceImpl.*(..)
            -->
            <aop:pointcut expression="execution(* cn.itcast.service.*ServiceImpl.*(..))" id="pc"/>
            <aop:aspect ref="myAdvice" >
                <!-- 指定名為before方法作為前置通知 -->
                <aop:before method="before" pointcut-ref="pc" />
                <!-- 后置 -->
                <aop:after-returning method="afterReturning" pointcut-ref="pc" />
                <!-- 環(huán)繞通知 -->
                <aop:around method="around" pointcut-ref="pc" />
                <!-- 異常攔截通知 -->
                <aop:after-throwing method="afterException" pointcut-ref="pc"/>
                <!-- 后置 -->
                <aop:after method="after" pointcut-ref="pc"/>
            </aop:aspect>
        </aop:config>
    </beans>
    
  5. 測(cè)試:

    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration("classpath:cn/itcast/d_springaop/applicationContext.xml")
    public class Demo {
        @Resource(name="userService")
        private UserService us;
        
        @Test
        public void fun1(){
            us.save();
        }
        
    }
    

注解配置(步驟)

  1. 導(dǎo)包4+2

    • spring的aop包
      • spring-aspects-4.2.4.RELEASE.jar
      • spring-aop-4.2.4.RELEASE.jar
    • spring需要第三方aop包
      * com.springsource.org.aopalliance-1.0.0.jar
      * com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
  2. 準(zhǔn)備目標(biāo)對(duì)象

    public class UserServiceImpl implements UserService {
        @Override
        public void save() {
            System.out.println("保存用戶(hù)!");
            //int i = 1/0;
        }
        @Override
        public void delete() {
            System.out.println("刪除用戶(hù)!");
        }
        @Override
        public void update() {
            System.out.println("更新用戶(hù)!");
        }
        @Override
        public void find() {
            System.out.println("查找用戶(hù)!");
        }
    }
    
  3. 準(zhǔn)備通知

    //通知類(lèi)
    @Aspect
    //表示該類(lèi)是一個(gè)通知類(lèi)
    public class MyAdvice {
        
        //抽取出來(lái),同一管理泵额,也可以在下面每個(gè)注解中復(fù)制一遍配深。
        @Pointcut("execution(* cn.itcast.service.*ServiceImpl.*(..))")
        public void pc(){}
        
        //前置通知
        //指定該方法是前置通知,并制定切入點(diǎn)
        @Before("MyAdvice.pc()")
        public void before(){
            System.out.println("這是前置通知!!");
        }
        //后置通知
        @AfterReturning("execution(* cn.itcast.service.*ServiceImpl.*(..))")
        public void afterReturning(){
            System.out.println("這是后置通知(如果出現(xiàn)異常不會(huì)調(diào)用)!!");
        }
        //環(huán)繞通知
        @Around("execution(* cn.itcast.service.*ServiceImpl.*(..))")
        public Object around(ProceedingJoinPoint pjp) throws Throwable {
            System.out.println("這是環(huán)繞通知之前的部分!!");
            Object proceed = pjp.proceed();//調(diào)用目標(biāo)方法
            System.out.println("這是環(huán)繞通知之后的部分!!");
            return proceed;
        }
        //異常通知
        @AfterThrowing("execution(* cn.itcast.service.*ServiceImpl.*(..))")
        public void afterException(){
            System.out.println("出事啦!出現(xiàn)異常了!!");
        }
        //后置通知
        @After("execution(* cn.itcast.service.*ServiceImpl.*(..))")
        public void after(){
            System.out.println("這是后置通知(出現(xiàn)異常也會(huì)調(diào)用)!!");
        }
    }
    
  4. 配置進(jìn)行織入,將通知織入目標(biāo)對(duì)象中

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd ">
    
    <!-- 準(zhǔn)備工作: 導(dǎo)入aop(約束)命名空間 -->
    <!-- 1.配置目標(biāo)對(duì)象 -->
        <bean name="userService" class="cn.itcast.service.UserServiceImpl" ></bean>
    <!-- 2.配置通知對(duì)象 -->
        <bean name="myAdvice" class="cn.itcast.e_annotationaop.MyAdvice" ></bean>
    <!-- 3.開(kāi)啟使用注解完成織入 -->
        <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
    
    </beans>
    



spring整合JDBC

spring提供了很多模板整合Dao技術(shù)


spring中提供了一個(gè)可以操作數(shù)據(jù)庫(kù)的對(duì)象.對(duì)象封裝了jdbc技術(shù).

JDBCTemplate => JDBC模板對(duì)象
與DBUtils中的QueryRunner非常相似.

步驟

  1. 導(dǎo)包

    • 4+2
    • spring-test
    • spring-aop
    • junit4類(lèi)庫(kù)
    • c3p0連接池
    • JDBC驅(qū)動(dòng)
    • spring-jdbc
    • spring-tx事務(wù)
  2. 準(zhǔn)備數(shù)據(jù)庫(kù)


  3. 書(shū)寫(xiě)Dao

    public interface UserDao {
    
        //增
        void save(User u);
        //刪
        void delete(Integer id);
        //改
        void update(User u);
        //查詢(xún)單個(gè)對(duì)象
        User getById(Integer id);
        //查詢(xún)值類(lèi)型
        int getTotalCount();
        //查詢(xún)list集合類(lèi)型
        List<User> getAll();
    }
    
    
    
    //使用JDBC模板實(shí)現(xiàn)增刪改查
    public class UserDaoImpl implements UserDao {
    
    private JdbcTemplate jdbcTemplate;
    
        @Override
        public void save(User u) {
            String sql = "insert into t_user values(null,?) ";
            jdbcTemplate.update(sql, u.getName());
        }
        @Override
        public void delete(Integer id) {
            String sql = "delete from t_user where id = ? ";
            jdbcTemplate.update(sql,id);
        }
        @Override
        public void update(User u) {
            String sql = "update  t_user set name = ? where id=? ";
            jdbcTemplate.update(sql, u.getName(),u.getId());
        }
        @Override
        public User getById(Integer id) {
            String sql = "select * from t_user where id = ? ";
            return jdbcTemplate.queryForObject(sql,new RowMapper<User>(){
                @Override
                public User mapRow(ResultSet rs, int arg1) throws SQLException {
                    User u = new User();
                    u.setId(rs.getInt("id"));
                    u.setName(rs.getString("name"));
                    return u;
                }}, id);
            
        }
        @Override
        public int getTotalCount() {
            String sql = "select count(*) from t_user  ";
            Integer count = jdbcTemplate.queryForObject(sql, Integer.class);
            return count;
        }
    
        @Override
        public List<User> getAll() {
            String sql = "select * from t_user  ";
            List<User> list = jdbcTemplate.query(sql, new RowMapper<User>(){
                @Override
                public User mapRow(ResultSet rs, int arg1) throws SQLException {
                    User u = new User();
                    u.setId(rs.getInt("id"));
                    u.setName(rs.getString("name"));
                    return u;
                }});
            return list;
        }
    }
    
  1. spring配置

    db.properties

    jdbc.jdbcUrl=jdbc:mysql:///hibernate_32
    jdbc.driverClass=com.mysql.jdbc.Driver
    jdbc.user=root
    jdbc.password=1234
    

    applicationContext.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd ">
    
        <!-- 指定spring讀取db.properties配置 -->
        <context:property-placeholder location="classpath:db.properties"  />
        
        <!-- 1.將連接池放入spring容器 -->
        <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" >
            <property name="jdbcUrl" value="${jdbc.jdbcUrl}" ></property>
            <property name="driverClass" value="${jdbc.driverClass}" ></property>
            <property name="user" value="${jdbc.user}" ></property>
            <property name="password" value="${jdbc.password}" ></property>
        </bean>
        
        
        <!-- 2.將JDBCTemplate放入spring容器 -->
        <bean name="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" >
            <property name="dataSource" ref="dataSource" ></property>
        </bean>
        
        <!-- 3.將UserDao放入spring容器 -->
        <bean name="userDao" class="cn.itcast.a_jdbctemplate.UserDaoImpl" >
            <property name="jt" ref="jdbcTemplate" ></property>
        </bean>
    
    </beans>
    
  2. 測(cè)試

    //演示JDBC模板
    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration("classpath:applicationContext.xml")
    public class Demo {
            @Resource(name="userDao")
        private UserDao ud;
        
        @Test
        public void fun1() throws Exception{
            
            //0 準(zhǔn)備連接池
            ComboPooledDataSource dataSource = new ComboPooledDataSource();
            dataSource.setDriverClass("com.mysql.jdbc.Driver");
            dataSource.setJdbcUrl("jdbc:mysql:///hibernate_32");
            dataSource.setUser("root");
            dataSource.setPassword("1234");
            //1 創(chuàng)建JDBC模板對(duì)象
            JdbcTemplate jt = new JdbcTemplate();
            jt.setDataSource(dataSource);
            //2 書(shū)寫(xiě)sql,并執(zhí)行
            String sql = "insert into t_user values(null,'rose') ";
            jt.update(sql);
            
        }
        
        @Test
        public void fun2() throws Exception{
            User u = new User();
            u.setName("tom");
            ud.save(u);
        }
        @Test
        public void fun3() throws Exception{
            User u = new User();
            u.setId(2);
            u.setName("jack");
            ud.update(u);
            
        }
        
        @Test
        public void fun4() throws Exception{
            ud.delete(2);
        }
        
        @Test
        public void fun5() throws Exception{
            System.out.println(ud.getTotalCount());
        }
        
        @Test
        public void fun6() throws Exception{
            System.out.println(ud.getById(1));
        }
        
        @Test
        public void fun7() throws Exception{
            System.out.println(ud.getAll());
        }
    }
    

進(jìn)階內(nèi)容(了解)

JDBCDaoSupport

使用:extends JdbcDaoSupport

//使用JDBC模板實(shí)現(xiàn)增刪改查
public class UserDaoImpl extends JdbcDaoSupport implements UserDao {
    @Override
    public void save(User u) {
        String sql = "insert into t_user values(null,?) ";
        super.getJdbcTemplate().update(sql, u.getName());
    }
    @Override
    public void delete(Integer id) {
        String sql = "delete from t_user where id = ? ";
        super.getJdbcTemplate().update(sql,id);
    }
    @Override
    public void update(User u) {
        String sql = "update  t_user set name = ? where id=? ";
        super.getJdbcTemplate().update(sql, u.getName(),u.getId());
    }
    @Override
    public User getById(Integer id) {
        String sql = "select * from t_user where id = ? ";
        return super.getJdbcTemplate().queryForObject(sql,new RowMapper<User>(){
            @Override
            public User mapRow(ResultSet rs, int arg1) throws SQLException {
                User u = new User();
                u.setId(rs.getInt("id"));
                u.setName(rs.getString("name"));
                return u;
            }}, id);
        
    }
    @Override
    public int getTotalCount() {
        String sql = "select count(*) from t_user  ";
        Integer count = super.getJdbcTemplate().queryForObject(sql, Integer.class);
        return count;
    }

    @Override
    public List<User> getAll() {
        String sql = "select * from t_user  ";
        List<User> list = super.getJdbcTemplate().query(sql, new RowMapper<User>(){
            @Override
            public User mapRow(ResultSet rs, int arg1) throws SQLException {
                User u = new User();
                u.setId(rs.getInt("id"));
                u.setName(rs.getString("name"));
                return u;
            }});
        return list;
    }
}

不用將JDBCTemplate放入spring容器

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd ">

    <!-- 指定spring讀取db.properties配置 -->
    <context:property-placeholder location="classpath:db.properties"  />
    
    <!-- 1.將連接池放入spring容器 -->
    <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" >
        <property name="jdbcUrl" value="${jdbc.jdbcUrl}" ></property>
        <property name="driverClass" value="${jdbc.driverClass}" ></property>
        <property name="user" value="${jdbc.user}" ></property>
        <property name="password" value="${jdbc.password}" ></property>
    </bean>
    
    
    <!-- 3.將UserDao放入spring容器 -->
    <bean name="userDao" class="cn.itcast.a_jdbctemplate.UserDaoImpl" >
        <property name="dataSource" ref="dataSource" ></property>
    </bean>
    
</beans>



spring中aop事務(wù)

事務(wù)

  • 事務(wù)特性:acid
  • 事務(wù)并發(fā)問(wèn)題
    • 臟讀
    • 不可重復(fù)讀
    • 幻讀
    • 事務(wù)的隔離級(jí)別
      • 1 讀未提交
      • 2 讀已提交
      • 4 可重復(fù)讀
      • 8 串行化

spring封裝了事務(wù)管理代碼

  • 事務(wù)操作
    • 打開(kāi)事務(wù)
    • 提交事務(wù)
    • 回滾事務(wù)
  • 事務(wù)操作對(duì)象
    • 因?yàn)樵诓煌脚_(tái),操作事務(wù)的代碼各不相同.spring提供了一個(gè)接口

    • PlatformTransactionManager 接口

      • DataSourceTransactionManager
      • HibernateTransitionmanager

      注意:在spring中玩事務(wù)管理.最為核心的對(duì)象就是TransactionManager對(duì)象

    • spring管理事務(wù)的屬性介紹

      • 事務(wù)的隔離級(jí)別
        • 1 讀未提交
        • 2 讀已提交
        • 4 可重復(fù)讀
        • 8 串行化
      • 是否只讀
        • true 只讀
        • false 可操作
      • 事務(wù)的傳播行為
        PROPAGION_XXX :事務(wù)的傳播行為
        • 保證同一個(gè)事務(wù)中
          • PROPAGATION_REQUIRED 支持當(dāng)前事務(wù),如果不存在 就新建一個(gè)嫁盲。(默認(rèn))
          • PROPAGATION_SUPPORTS 支持當(dāng)前事務(wù)篓叶,如果不存在,就不使用事務(wù)羞秤。
          • PROPAGATION_MANDATORY 支持當(dāng)前事務(wù)缸托,如果不存在,拋出異常瘾蛋。
        • 保證沒(méi)有在同一個(gè)事務(wù)中
          • PROPAGATION_REQUIRES_NEW 如果有事務(wù)存在俐镐,掛起當(dāng)前事務(wù),創(chuàng)建一個(gè)新的事務(wù)瘦黑。
          • PROPAGATION_NOT_SUPPORTED 以非事務(wù)方式運(yùn)行京革,如果有事務(wù)存在,掛起當(dāng)前事務(wù)幸斥。
          • PROPAGATION_NEVER 以非事務(wù)方式運(yùn)行,如果有事務(wù)存在咬扇,拋出異常 PROPAGATION_NESTED 如果當(dāng)前事務(wù)存在甲葬,則嵌套事務(wù)執(zhí)行。

spring管理事務(wù)方式

編碼式

  1. 將核心事務(wù)管理器配置到spring容器


  2. 配置TransactionTemplate模板


  3. 將事務(wù)模板注入Service


  4. 在Service中調(diào)用模板



    這樣每個(gè)事務(wù)的方法都要寫(xiě)這個(gè)方法(麻煩)懈贺,了解即可经窖,一般不用這種方式坡垫。

xml配置(aop) 重點(diǎn)

  1. 導(dǎo)包

    • aop
    • aspect
    • aop聯(lián)盟
    • weaving織入包
  2. 基本配置

    • beans: 最基本
    • context:讀取properties配置
    • aop:配置aop
    • tx:配置事務(wù)通知
  3. 配置通知 和 配置將通知織入目標(biāo)

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd ">
    
        <!-- 指定spring讀取db.properties配置 -->
        <context:property-placeholder location="classpath:db.properties"  />
        
        <!-- 事務(wù)核心管理器,封裝了所有事務(wù)操作. 依賴(lài)于連接池 -->
        <bean name="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager" >
            <property name="dataSource" ref="dataSource" ></property>
        </bean>
        <!-- 事務(wù)模板對(duì)象 -->
        <bean name="transactionTemplate" class="org.springframework.transaction.support.TransactionTemplate" >
            <property name="transactionManager" ref="transactionManager" ></property>
        </bean>
        
        <!-- 配置事務(wù)通知 -->
        <tx:advice id="txAdvice" transaction-manager="transactionManager" >
            <tx:attributes>
                <!-- 以方法為單位,指定方法應(yīng)用什么事務(wù)屬性
                    isolation:隔離級(jí)別
                    propagation:傳播行為
                    read-only:是否只讀
                 -->
                <tx:method name="save*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
                <tx:method name="persist*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
                <tx:method name="update*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
                <tx:method name="modify*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
                <tx:method name="delete*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
                <tx:method name="remove*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
                <tx:method name="get*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="true" />
                <tx:method name="find*" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="true" />
                <tx:method name="transfer" isolation="REPEATABLE_READ" propagation="REQUIRED" read-only="false" />
            </tx:attributes>
        </tx:advice>
        
        
        <!-- 配置織入 -->
        <aop:config  >
            <!-- 配置切點(diǎn)表達(dá)式 -->
            <aop:pointcut expression="execution(* cn.itcast.service.*ServiceImpl.*(..))" id="txPc"/>
            <!-- 配置切面 : 通知+切點(diǎn)
                    advice-ref:通知的名稱(chēng)
                    pointcut-ref:切點(diǎn)的名稱(chēng)
             -->
            <aop:advisor advice-ref="txAdvice" pointcut-ref="txPc" />
        </aop:config>
        
        
        <!-- 1.將連接池 -->
        <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" >
            <property name="jdbcUrl" value="${jdbc.jdbcUrl}" ></property>
            <property name="driverClass" value="${jdbc.driverClass}" ></property>
            <property name="user" value="${jdbc.user}" ></property>
            <property name="password" value="${jdbc.password}" ></property>
        </bean>
        
        
        
        <!-- 2.Dao-->
        <bean name="accountDao" class="cn.itcast.dao.AccountDaoImpl" >
            <property name="dataSource" ref="dataSource" ></property>
        </bean>
        <!-- 3.Service-->
        <bean name="accountService" class="cn.itcast.service.AccountServiceImpl" >
            <property name="ad" ref="accountDao" ></property>
            <property name="tt" ref="transactionTemplate" ></property>
        </bean>  
    
    </beans>
    
  4. 測(cè)試異常操作數(shù)據(jù)庫(kù),數(shù)據(jù)庫(kù)數(shù)據(jù)沒(méi)有變化画侣。

注解配置(aop)

  1. 導(dǎo)包

    • aop
    • aspect
    • aop聯(lián)盟
    • weaving織入包
  2. 導(dǎo)入新的約束(tx)

    • beans: 最基本
    • context:讀取properties配置
    • aop:配置aop
    • tx:配置事務(wù)通知
  3. 開(kāi)啟注解管理事務(wù)
    <tx:annotation-driven/>

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd ">
    
        <!-- 指定spring讀取db.properties配置 -->
        <context:property-placeholder location="classpath:db.properties"  />
        
        <!-- 事務(wù)核心管理器,封裝了所有事務(wù)操作. 依賴(lài)于連接池 -->
        <bean name="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager" >
            <property name="dataSource" ref="dataSource" ></property>
        </bean>
        <!-- 事務(wù)模板對(duì)象 -->
        <bean name="transactionTemplate" class="org.springframework.transaction.support.TransactionTemplate" >
            <property name="transactionManager" ref="transactionManager" ></property>
        </bean>
        
        <!-- 開(kāi)啟使用注解管理aop事務(wù) -->
        <tx:annotation-driven/>
        
        <!-- 1.將連接池 -->
        <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" >
            <property name="jdbcUrl" value="${jdbc.jdbcUrl}" ></property>
            <property name="driverClass" value="${jdbc.driverClass}" ></property>
            <property name="user" value="${jdbc.user}" ></property>
            <property name="password" value="${jdbc.password}" ></property>
        </bean>
        
        
        
        <!-- 2.Dao-->
        <bean name="accountDao" class="cn.itcast.dao.AccountDaoImpl" >
            <property name="dataSource" ref="dataSource" ></property>
        </bean>
        <!-- 3.Service-->
        <bean name="accountService" class="cn.itcast.service.AccountServiceImpl" >
            <property name="ad" ref="accountDao" ></property>
            <property name="tt" ref="transactionTemplate" ></property>
        </bean>  
    
    </beans>
    
  4. 使用注解

    在類(lèi)上和方法上都可以添加事務(wù)注解冰悠,方法上的注解可以覆蓋類(lèi)上的注解。

    @Transactional(isolation=Isolation.REPEATABLE_READ,propagation=Propagation.REQUIRED,readOnly=true)
    public class AccountServiceImpl implements AccountService {
    
        private AccountDao ad ;
        private TransactionTemplate tt;
        
        @Override
        @Transactional(isolation=Isolation.REPEATABLE_READ,propagation=Propagation.REQUIRED,readOnly=false)
        public void transfer(final Integer from,final Integer to,final Double money) {
            //減錢(qián)
            ad.decreaseMoney(from, money);
            int i = 1/0;
            //加錢(qián)
            ad.increaseMoney(to, money);
        }
    
        public void setAd(AccountDao ad) {
            this.ad = ad;
        }
    
        public void setTt(TransactionTemplate tt) {
            this.tt = tt;
        }
    }
    
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末配乱,一起剝皮案震驚了整個(gè)濱河市溉卓,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌搬泥,老刑警劉巖桑寨,帶你破解...
    沈念sama閱讀 206,013評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異忿檩,居然都是意外死亡尉尾,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén)燥透,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)沙咏,“玉大人,你說(shuō)我怎么就攤上這事班套≈辏” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 152,370評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵孽尽,是天一觀(guān)的道長(zhǎng)窖壕。 經(jīng)常有香客問(wèn)我,道長(zhǎng)杉女,這世上最難降的妖魔是什么瞻讽? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,168評(píng)論 1 278
  • 正文 為了忘掉前任,我火速辦了婚禮熏挎,結(jié)果婚禮上速勇,老公的妹妹穿的比我還像新娘。我一直安慰自己坎拐,他們只是感情好烦磁,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,153評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著哼勇,像睡著了一般都伪。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上积担,一...
    開(kāi)封第一講書(shū)人閱讀 48,954評(píng)論 1 283
  • 那天陨晶,我揣著相機(jī)與錄音,去河邊找鬼帝璧。 笑死先誉,一個(gè)胖子當(dāng)著我的面吹牛湿刽,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播褐耳,決...
    沈念sama閱讀 38,271評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼诈闺,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了铃芦?” 一聲冷哼從身側(cè)響起雅镊,我...
    開(kāi)封第一講書(shū)人閱讀 36,916評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎杨帽,沒(méi)想到半個(gè)月后漓穿,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,382評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡注盈,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,877評(píng)論 2 323
  • 正文 我和宋清朗相戀三年晃危,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片老客。...
    茶點(diǎn)故事閱讀 37,989評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡僚饭,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出胧砰,到底是詐尸還是另有隱情鳍鸵,我是刑警寧澤,帶...
    沈念sama閱讀 33,624評(píng)論 4 322
  • 正文 年R本政府宣布尉间,位于F島的核電站偿乖,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏哲嘲。R本人自食惡果不足惜贪薪,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,209評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望眠副。 院中可真熱鬧画切,春花似錦、人聲如沸囱怕。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,199評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)娃弓。三九已至典格,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間台丛,已是汗流浹背钝计。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,418評(píng)論 1 260
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留齐佳,地道東北人私恬。 一個(gè)月前我還...
    沈念sama閱讀 45,401評(píng)論 2 352
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像炼吴,于是被迫代替她去往敵國(guó)和親本鸣。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,700評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開(kāi)發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見(jiàn)模式的工具(例如配置管理硅蹦,服務(wù)發(fā)現(xiàn)荣德,斷路器,智...
    卡卡羅2017閱讀 134,599評(píng)論 18 139
  • 1.IOC與DI inverse of control 控制反轉(zhuǎn)我們創(chuàng)建對(duì)象的方式反轉(zhuǎn)了童芹。以前對(duì)象的創(chuàng)建由開(kāi)發(fā)人員...
    蕊er閱讀 316評(píng)論 0 0
  • 1. Java基礎(chǔ)部分 基礎(chǔ)部分的順序:基本語(yǔ)法涮瞻,類(lèi)相關(guān)的語(yǔ)法,內(nèi)部類(lèi)的語(yǔ)法假褪,繼承相關(guān)的語(yǔ)法署咽,異常的語(yǔ)法,線(xiàn)程的語(yǔ)...
    子非魚(yú)_t_閱讀 31,581評(píng)論 18 399
  • AOP注解開(kāi)發(fā)光速入門(mén) 步驟一:引入相關(guān)的jar及配置文件 步驟二:編寫(xiě)目標(biāo)類(lèi) 步驟三:開(kāi)啟aop注解自動(dòng)代理 常...
    日落perfe閱讀 605評(píng)論 0 1
  • 一直以來(lái)慕匠,特別喜歡中國(guó)的傳統(tǒng)文化,喜歡那種帶有年代感的東西域醇。一幢六角玲瓏塔台谊,勾勒不出歷史前進(jìn)的車(chē)轍;一戶(hù)方...
    孤梟閱讀 312評(píng)論 1 1