Spring

重點(diǎn)內(nèi)容IoC和AOP

Spring

Spring是分層的 Java SE/EE應(yīng)用 full-stack 輕量級(jí)開源框架尤辱,以 IoC(Inverse Of Control:反轉(zhuǎn)控制)和 AOP(Aspect Oriented Programming:面向切面編程)為內(nèi)核汉额,提供了展現(xiàn)層 SpringMVC 和持久層 Spring JDBC 以及業(yè)務(wù)層事務(wù)管理等眾多的企業(yè)級(jí)應(yīng)用技術(shù)呻引,還能整合開源世界眾多著名的第三方框架和類庫量没,逐漸成為使用最多的Java EE 企業(yè)應(yīng)用開源框架
spring 的體系結(jié)構(gòu)

編寫XML 配置spring賬戶轉(zhuǎn)賬案例
實(shí)體類Account .java

package com.neusoft.domain;

import java.io.Serializable;

/**
 * @author Eric Lee
 * @date 2020/9/5 11:01
 */
public class Account implements Serializable {
    private Integer id;
    private String name;
    private Float money;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Float getMoney() {
        return money;
    }

    public void setMoney(Float money) {
        this.money = money;
    }

    @Override
    public String toString() {
        return "Account{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", money=" + money +
                '}';
    }
}

Dao

package com.neusoft.dao;

import com.neusoft.domain.Account;

import java.util.List;

public interface IAccountDao {

    List<Account> findAllAccount();

    Account findAccountById(Integer accountId);

    void saveAccount(Account account);

    void updateAccount(Account account);

    void deleteAccount(Integer accountId);

}

impl

package com.neusoft.dao.Impl;

import com.neusoft.dao.IAccountDao;
import com.neusoft.domain.Account;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;

import java.sql.SQLException;
import java.util.List;

/**
 * @author Eric Lee
 * @date 2020/9/5 11:10
 */
public class AccountDaoImpl  implements IAccountDao {

    private QueryRunner runner;

    public void setRunner(QueryRunner runner) {
        this.runner = runner;
    }

    @Override
    public List<Account> findAllAccount() {
        try {
            return runner.query("select * from account", new BeanListHandler<Account>(Account.class));
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public Account findAccountById(Integer accountId) {
        try {
            return runner.query("select * from account where id = ?", new BeanHandler<Account>(Account.class), accountId);
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public void saveAccount(Account account) {
        try {
            runner.update("insert into account(name,money) values (?, ?)",account.getName(), account.getMoney());
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    public void updateAccount(Account account) {

        try {
            runner.update("update account set name= ? , money = ? where id=? ",account.getName(), account.getMoney(), account.getId());
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }

    }

    @Override
    public void deleteAccount(Integer accountId) {

        try {
            runner.update("delete from account where id = ?", accountId);
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }

    }
}

bean.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--    配置service-->
    <bean id="accountService" class="com.neusoft.service.impl.AccountServiceImpl">
        <property name="accountDao" ref="accountDao"></property>
    </bean>
<!--    配置dao-->
    <bean id="accountDao" class="com.neusoft.dao.Impl.AccountDaoImpl">
<!--        注入qr-->
        <property name="runner" ref="runner"></property>
    </bean>

<!--    配置QueryRunner-->

    <bean id="runner" class="org.apache.commons.dbutils.QueryRunner">
<!--        注入數(shù)據(jù)源-->
        <constructor-arg name="ds" ref="dataSource"></constructor-arg>
    </bean>

    <!--    配置數(shù)據(jù)源-->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/java9_spring"></property>
        <property name="user" value="root"></property>
        <property name="password" value="root"></property>

    </bean>

</beans>

service

package com.neusoft.service;

import com.neusoft.domain.Account;

import java.util.List;

public interface IAccountService {

    // 查詢所有
    List<Account> findAllAccount();

    Account findAccountById(Integer accountId);

    void  saveAccount(Account account);

    void  updateAccount(Account account);

    void deleteAccount(Integer accountId);

}

實(shí)現(xiàn)

package com.neusoft.service.impl;

import com.neusoft.dao.IAccountDao;
import com.neusoft.dao.Impl.AccountDaoImpl;
import com.neusoft.domain.Account;
import com.neusoft.service.IAccountService;

import java.util.List;

/**
 * @author Eric Lee
 * @date 2020/9/5 11:39
 */
public class AccountServiceImpl implements IAccountService {
    private IAccountDao accountDao;

    public void setAccountDao(IAccountDao accountDao) {
        this.accountDao = accountDao;
    }

    @Override
    public List<Account> findAllAccount() {
        return accountDao.findAllAccount();
    }

    @Override
    public Account findAccountById(Integer accountId) {
        return accountDao.findAccountById(accountId);
    }

    @Override
    public void saveAccount(Account account) {
        accountDao.saveAccount(account);
    }

    @Override
    public void updateAccount(Account account) {
        accountDao.updateAccount(account);
    }

    @Override
    public void deleteAccount(Integer accountId) {
            accountDao.deleteAccount(accountId);
    }
}

Test

package com.neusoft.test;

import com.neusoft.domain.Account;
import com.neusoft.service.IAccountService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import java.util.List;

/**
 * @author Eric Lee
 * @date 2020/9/5 14:09
 */
public class TestAccountService {

    ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
    IAccountService as = ac.getBean("accountService", IAccountService.class);

    @Test
    public void testFindAll() {

        //3.執(zhí)行方法
        List<Account> accounts = as.findAllAccount();
        for(Account account : accounts){
            System.out.println(account);
        }
    }

    @Test
    public void testFindOne() {
        //3.執(zhí)行方法
        Account account = as.findAccountById(1);
        System.out.println(account);
    }

    @Test
    public void testSave() {
        Account account = new Account();
        account.setName("test");
        account.setMoney(12345f);
        //3.執(zhí)行方法
        as.saveAccount(account);

    }

    @Test
    public void testUpdate() {
        //3.執(zhí)行方法
        Account account = as.findAccountById(4);
        account.setMoney(23456f);
        as.updateAccount(account);
    }

    @Test
    public void testDelete() {
        //3.執(zhí)行方法
        as.deleteAccount(4);
    }
}

使用注解進(jìn)行配置

bean.xml

<?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 http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="com.neusoft">

    </context:component-scan>
<!--    配置QueryRunner-->

    <bean id="runner" class="org.apache.commons.dbutils.QueryRunner">
<!--        注入數(shù)據(jù)源-->
        <constructor-arg name="ds" ref="dataSource"></constructor-arg>
    </bean>

    <!--    配置數(shù)據(jù)源-->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/java9_spring"></property>
        <property name="user" value="root"></property>
        <property name="password" value="root"></property>

    </bean>

</beans>

核心修改
將對(duì)象交給spring去管理不见, 指定掃描的包名

 <context:component-scan base-package="com.neusoft">
 </context:component-scan>

service層

image

dao層

@Component

  • 作用
    把資源讓 spring 來管理霍殴。相當(dāng)于在 xml 中配置一個(gè) bean。
  • 屬性
    value:指定 bean 的 id独令。如果不指定 value 屬性闺阱,默認(rèn) bean 的 id 是當(dāng)前類的類名炮车。首字母小寫。

@Controller @Service @Repository

他們?nèi)齻€(gè)注解都是針對(duì)一個(gè)的衍生注解酣溃,他們的作用及屬性都是一模一樣的。
他們只不過是提供了更加明確的語義化纪隙。
@Controller :一般用于表現(xiàn)層的注解赊豌。
@Service :一般用于業(yè)務(wù)層的注解。
@Repository :一般用于持久層的注解
細(xì)節(jié):如果注解中有且只有一個(gè)屬性 要賦值時(shí)是 绵咱,且名稱是 value 碘饼,value 在賦值是可以不寫

@Autowired

作用:自動(dòng)按照類型注入。當(dāng)使用注解注入屬性時(shí)悲伶,set方法可以省略艾恼。它只能注入其他 bean 類型。當(dāng)有多個(gè)類型匹配時(shí)麸锉,使用要注入的對(duì)象變量名稱作為 bean 的 id钠绍,在 spring 容器查找,找到了也可以注入成功花沉。找不到就報(bào)錯(cuò)柳爽。
相當(dāng)于: <property name="accountDao" ref="accountDao"></property>

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市碱屁,隨后出現(xiàn)的幾起案子磷脯,更是在濱河造成了極大的恐慌,老刑警劉巖娩脾,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件赵誓,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)俩功,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門幻枉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人绑雄,你說我怎么就攤上這事展辞。” “怎么了万牺?”我有些...
    開封第一講書人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵罗珍,是天一觀的道長。 經(jīng)常有香客問我脚粟,道長覆旱,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任核无,我火速辦了婚禮扣唱,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘团南。我一直安慰自己噪沙,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開白布吐根。 她就那樣靜靜地躺著正歼,像睡著了一般。 火紅的嫁衣襯著肌膚如雪拷橘。 梳的紋絲不亂的頭發(fā)上局义,一...
    開封第一講書人閱讀 49,730評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音冗疮,去河邊找鬼萄唇。 笑死,一個(gè)胖子當(dāng)著我的面吹牛术幔,可吹牛的內(nèi)容都是我干的另萤。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼特愿,長吁一口氣:“原來是場噩夢啊……” “哼仲墨!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起揍障,我...
    開封第一講書人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤目养,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后毒嫡,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體癌蚁,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡幻梯,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了努释。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片碘梢。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖伐蒂,靈堂內(nèi)的尸體忽然破棺而出煞躬,到底是詐尸還是另有隱情,我是刑警寧澤逸邦,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布恩沛,位于F島的核電站,受9級(jí)特大地震影響缕减,放射性物質(zhì)發(fā)生泄漏雷客。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一桥狡、第九天 我趴在偏房一處隱蔽的房頂上張望搅裙。 院中可真熱鬧,春花似錦裹芝、人聲如沸部逮。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽甥啄。三九已至,卻和暖如春炬搭,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背穆桂。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來泰國打工宫盔, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人享完。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓灼芭,卻偏偏與公主長得像,于是被迫代替她去往敵國和親般又。 傳聞我的和親對(duì)象是個(gè)殘疾皇子彼绷,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348