Spring入门笔记02

Spring入门笔记02

1. Spring整合连接池

1.1 Spring整合C3P0

  • 在工程中导入c3p0连接池需要的包com.springsource.com.mchange.v2.c3p0-0.9.1.2.jar

  • c3p0的硬编码方式

    @Test //自己new对象,自己设置属性
      public void test() throws Exception {
          ComboPooledDataSource dataSource = new ComboPooledDataSource();
          //设置驱动
          dataSource.setDriverClass("com.mysql.jdbc.Driver");
          //设置地址
          dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/hibernate");
          //设置用户名
          dataSource.setUser("root");
          //设置密码
          dataSource.setPassword("2626");
          //获取链接池连接对象
          Connection con = dataSource.getConnection();
          System.out.println(con);
          //com.mchange.v2.c3p0.impl.NewProxyConnection@26ba2a48
      }
    
  • Spring整合c3p0连接池

  • 配置文件

    <!-- c3p0 -->
      <bean id="C3P0" class="com.mchange.v2.c3p0.ComboPooledDataSource">
          <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
          <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/hibernate"></property>
          <property name="user" value="root"></property>
          <property name="password" value="2626"></property>
      </bean>
    
  • 测试

    @Test //Spring的IOC+DI替代以上硬编码的方式
      public void test2() throws SQLException {
          ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
          DataSource dataSource = (DataSource) context.getBean("C3P0");
          Connection con = dataSource.getConnection();
          System.out.println(con);
          //com.mchange.v2.c3p0.impl.NewProxyConnection@52aa2946
      }
    

1.2 Spring整合DBCP

  • 导入DBCP连接池需要的包com.springsource.org.apache.commons.dbcp-1.2.2.osgi.jar和com.springsource.org.apache.commons.pool-1.5.3.jar

  • DBCP硬编码方式

    @Test //DBCP的硬编码方式
      public void test3() throws SQLException {
          BasicDataSource dataSource = new BasicDataSource();
          dataSource.setDriverClassName("com.mysql.jdbc.Driver");
          dataSource.setUrl("jdbc:mysql://localhost:3306/hibernate");
          dataSource.setUsername("root");
          dataSource.setPassword("2626");
          Connection con = dataSource.getConnection();
          System.out.println(con);
          //jdbc:mysql://localhost:3306/hibernate, UserName=root@localhost, MySQL-AB JDBC Driver
      }
    
  • Spring整合DBCP

  • 配置文件

    <!-- DBCP -->
      <bean id="DBCP" class="org.apache.tomcat.dbcp.dbcp.BasicDataSource">
          <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
          <property name="url" value="jdbc:mysql://localhost:3306/hibernate"></property>
          <property name="username" value="root"></property>
          <property name="password" value="2626"></property>
      </bean>
    
  • 测试

    @Test
      public void test4() throws SQLException {
          ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
          DataSource dataSource = (DataSource) context.getBean("DBCP");
          Connection con = dataSource.getConnection();
          System.out.println(con);
          //jdbc:mysql://localhost:3306/hibernate, UserName=root@localhost, MySQL-AB JDBC Driver
      }
    

1.3 最终版

  • 最终版使用propertie配置文件,Spring加载properties文件

  • Spring提供了一个标签可以加载外部的properties文件内容

  • 导入context的名称空间和约束后,xml文件中才会有提示,这个约束在/spring-framework-4.2.4.RELEASE/docs/spring-framework-reference/html/xsd-configuration.html中可以找到

    <?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"> <!-- bean definitions here -->
    </beans>
    
  • 导入约束后配置xml

    <context:property-placeholder location="classpath:jdbc.properties"/>
    
      <!-- DBCP -->
      <bean id="DBCP" class="org.apache.tomcat.dbcp.dbcp.BasicDataSource">
          <property name="driverClassName" value="${jdbc.driver}"></property>
          <property name="url" value="${jdbc.url}"></property>
          <property name="username" value="${jdbc.username}"></property>
          <property name="password" value="${jdbc.password}"></property>
      </bean>
    
  • 测试

    @Test
      public void test4() throws SQLException {
          ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
          DataSource dataSource = (DataSource) context.getBean("DBCP");
          Connection con = dataSource.getConnection();
          System.out.println(con);
          //jdbc:mysql://localhost:3306/hibernate, UserName=root@localhost, MySQL-AB JDBC Driver
      }
    
  • jdbc.properties配置文件可以配置不同的数据库,切换方便。

2. 基于注解的IOC配置

  • 注解配置和xml配置要实现的功能都是一样的,都是要降低程序间的耦合。只是配置形式不一样。至于是使用xml还是注解,实际的开发过程中,每家公司有不同的习惯。

2.1 导包

  • 拷贝必备包到lib目录下。基于注解的配置中,需要加入一个aop的jar包。

2.2 配置文件

  • 基于注解的配置文件,导入约束时需要多导入一个context名称空间下的约束。约束的位置可以在约束的位置在:

    ​ ..\spring-framework-4.2.4.RELEASE\docs\spring-framework-reference\html\xsd-configuration.html中找到

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
           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
                  http://www.springframework.org/schema/context
                      http://www.springframework.org/schema/context/spring-context.xsd ">
    </beans>
    

2.3 开启注解扫描器

  • 在配置文件中开启注解扫描器

    <!-- 开启注解扫描器
          com.itzhouq:包含自己以及自己下面的所有子包
     -->
    <context:component-scan base-package="com.itzhouq"></context:component-scan>
          
    
  • 告知Spring框架,在读取配置文件,创建容器时,依据注解创建对象,并存入容器中

2.4 使用注解

  • 要创建UserDaoImpl对象,在类上使用@Component注解。只要定义在类上,那么注解扫描器只要一扫描到就会创建该类的实例对象,放入Spring容器中。

    package com.itzhouq.daoImpl;
    
    import org.springframework.stereotype.Component;
    
    import com.itzhouq.dao.UserDao;
    
    @Component("userDao") //<bean id="userDao" class="com.itzhouq.daoImpl.UserDaoImpl"></bean>
    public class UserDaoImpl implements UserDao{
    
      @Override
      public void save() {
          System.out.println("操作数据库,保存用户的数据");
      }
    }
    
  • 要创建的对象UserServiceImpl,在类上使用注解,在属性上使用注解

  • @value("属性值"):定义在属性字段上,针对的是基本数据类型和String类型。如果使用了这个注解,该属性的set方法可以省略不写。

  • @Autowired:定义在属性字段上,针对的是对象类型。自动按照类型注入,当使用注解注入属性时,set方法可以省略。它只能注入其他bean类型。当有多个类型匹配时,使用要注解的对象变量名作为bean的id,在Spring容器查找,找到了也可以注入成功,找不到就报错。

  • @Qualifier("对象属性id"):定义在属性字段上。在自动按照类型注入的基础上,再按照Bean的id注入。他在给字段注入时,不能独立使用,必须和@Autowired一起使用。但是给方法参数注入时,可以独立使用。

    package com.itzhouq.serviceImpl;
    
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.stereotype.Component;
    
    import com.itzhouq.dao.UserDao;
    import com.itzhouq.daoImpl.UserDaoImpl;
    import com.itzhouq.service.UserService;
    
    @Component("userService") //<bean id="UserService" class="com.itzhouq.serviceImpl.UserServiceImpl">
    public class UserServiceImpl implements UserService {
      @Value("要开始访问dao了") //<property name="name" value="要开始访问dao了"></property>
      private String name;    //使用注解,可以不需要set方法,相当于直接赋值
      
      @Autowired  //对象类型:自动去Spring容器中找有没有该类型(UserDao)的实例对象  如果有直接赋值
        @Qualifier("userDao")
      private UserDao userDao;
      public void setUserDao(UserDao userDao) {
          this.userDao = userDao;
      }
    
      @Override
      public void save() {
          System.out.println(name);
          //调用dao
          userDao.save();
      }
    }
    
  • 测试

    @Test
      public void test() {
          ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
          UserService userService = (UserService) context.getBean("userService");
          userService.save();
          //要开始访问dao了
          //操作数据库,保存用户的数据
      }
    

2.5了解的几个注解

  • @Scope("singleton") / @Scope("prototype"):定义在类上,用于指定该类是单实例还是多实例
    • 一般action/web层为多实例,service和dao层为单实例
  • @PostConstruct:定义在方法上,用于配置初始化方法
  • @PreDestroy:定义在方法上,用于配置销毁的方法

3. Spring整合JUnit

spring+junit.png

3.1 导入包

  • spring-aop-4.2.4.RELEASE.jar
  • spring-test-4.2.4.RELEASE.jar
  • junit.jar

3.2 编写测试类

package com.itzhouq.test;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import com.itzhouq.service.UserService;

//1. 告诉Spring配置文件的位置
//2. 告诉Spring谁去加载配置文件
@ContextConfiguration(value="classpath:applicationContext.xml")
@RunWith(value=SpringJUnit4ClassRunner.class)
public class SpringJunit {
    @Autowired
    private UserService userService;
    
    @Test
    public void test() {
        userService.save();
//      要开始访问dao了
//      操作数据库,保存用户的数据
    }
}

3.3 注解

  • 使用@RunWith注解替换原有运行器
  • 使用@ContextConfiguration指定spring配置文件的位置
  • 使用@Autowired给测试类中的变量注入数据
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容

  • Spring 复习 [toc] spring介绍 三层架构中spring位置,连接三层。 spring一站式框架正...
    inke阅读 744评论 0 11
  • springAop:面向切面的编程 应用场景:权限控制、事物管理、日志打印等等,就是在不同的方法中重复用到相同的代...
    HJJ_3c00阅读 328评论 0 0
  • 原文链接:https://docs.spring.io/spring-boot/docs/1.4.x/refere...
    pseudo_niaonao阅读 4,677评论 0 9
  • 在我搭建基于Spring Cloud的微服务体系应用的时候所需要或者是常用的属性配置文件,还有这些属性的用途,此配...
    StrongManAlone阅读 3,979评论 0 18
  • 我已婚。六年的婚姻生活让我想不起来爱的轰轰烈烈是怎样的一种滋味,生活的平淡让我对爱情的话题都嗤之以鼻。我只知道现在...
    长白山董小姐阅读 887评论 0 0