码迷,mamicode.com
首页 > 编程语言 > 详细

Spring框架初识(一)

时间:2017-09-04 18:56:06      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:classpath   垃圾回收   web项目   url   数据类型   alt   注意   div   set   

1. Spring框架概述
    1.1 简介
        Spring是分层的Java SE/EE应用 full-stack轻量级开源框架,以IoC(Inverse Of Control:反转控制)和AOP(Aspect Oriented Programming:面向切面编程)为内核,提供了展现层Spring MVC和持久层Spring JDBC以及业务层事务管理等众多的企业级应用技术,还能整合开源世界众多著名的第三方框架和类库,逐渐成为使用最多的Java EE企业应用开源框架。
    1.2 优点
  • 方便解耦,简化开发
        通过Spring提供的IoC容器,可以将对象间的依赖关系交由Spring进行控制,避免硬编码所造成的过度程序耦合。用户也不必再为单例模式类、属性文件解析等这些很底层的需求编写代码,可以更专注于上层的应用。
  • AOP编程的支持
        通过Spring的AOP功能,方便进行面向切面的编程,许多不容易用传统OOP实现的功能可以通过AOP轻松应付。
  • 声明式事务的支持
        可以将我们从单调烦闷的事务管理代码中解脱出来,通过声明式方式灵活的进行事务的管理,提高开发效率和质量。
  • 方便程序的测试
        可以用非容器依赖的编程方式进行几乎所有的测试工作,测试不再是昂贵的操作,而是随手可做的事情。
  • 方便集成各种优秀框架
        Spring可以降低各种框架的使用难度,提供了对各种优秀框架(Struts、Hibernate、Hessian、Quartz等)的直接支持。
  • 降低JavaEE API的使用难度
        Spring对JavaEE API(如JDBC、JavaMail、远程调用等)进行了薄薄的封装层,使这些API的使用难度大为降低。
Java源码是经典学习范例
        Spring的源代码设计精妙、结构清晰、匠心独用,处处体现着大师对Java设计模式灵活运用以及对Java技术的高深造诣。它的源代码无意是Java技术的最佳实践的范例。

 

  1.3 体系结构
技术分享
2. Spring框架使用
   2.1 导包(基本包6个)
Spring基本包
spring-beans-4.2.4.RELEASE.jar      
spring-context-4.2.4.RELEASE.jar    
spring-core-4.2.4.RELEASE.jar       
spring-expression-4.2.4.RELEASE.jar
log4j
com.springsource.org.apache.commons.logging-1.1.1.jar
com.springsource.org.apache.log4j-1.2.15.jar
   
 
 
 
 
 
 
 
 
 
2.2 创建配置文件(默认在src下创建applicationContext.xml配置文件)
<?xml version="1.0" encoding="UTF-8"?>
<!-- 导入schema
约束的位置在:
    ..\spring-framework-4.2.4.RELEASE\docs\spring-framework-reference\html\xsd-configuration.html
    文件中。
注意:要导入schema约束
-->
<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">
</beans>

 

2.3 模拟配置
    2.3.1 Demo1
  
package com.zycom.demo;
 
import org.junit.Test;
import org.springframework.context.ApplicationContext;
 
import com.zycom.service.UserService;
import com.zycom.utils.SpringUtils;
 
public class Demo1 {
      @Test
      public void t1(){
           ApplicationContext ac = SpringUtils.getApplicationContext();
           UserService us = (UserService) ac.getBean("userService");
           us.login();
           System.out.println("login成功...");
      }
}

2.3.2 Service层

     
package com.zycom.serviceimpl;
 
import org.springframework.context.ApplicationContext;
 
import com.zycom.dao.UserDao;
import com.zycom.service.UserService;
import com.zycom.utils.SpringUtils;
 
public class UserServiceImpl implements UserService {
 
      @Override
      public boolean login() {
           System.out.println("UserSerivice:登录...");
           ApplicationContext ac = SpringUtils.getApplicationContext();
           UserDao ud = (UserDao) ac.getBean("userDao");
           return ud.login();
      }
      
}

2.3.3 DAO层

 
package com.zycom.daoimpl;
 
import com.zycom.dao.UserDao;
 
public class UserDaoImpl implements UserDao {
 
      @Override
      public boolean login() {
           System.out.println("UserDao:用户登录...");
           return true;
      }
 
}
  2.3.3 util工具类
package com.zycom.utils;
 
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
public class SpringUtils {
      public static ApplicationContext  ac =null;
      static{
           ac = new ClassPathXmlApplicationContext("applicationContext.xml");
      }
      public static ApplicationContext getApplicationContext(){
           return ac;
      }
}

2.3.4 (src下)applicationContext配置文件

<?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/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd">
 
    <!-- bean definitions here -->
    <bean id="userService" class="com.zycom.serviceimpl.UserServiceImpl"></bean>
      <bean id="userDao" class="com.zycom.daoimpl.UserDaoImpl"></bean>
</beans>

 

3.Spring基于XML的IOC细节
 
    3.1 spring中工厂的类结构图
技术分享
    3.2 BeanFactory(旧)和ApplicationContext(新)的区别
BeanFactory是Spring容器中的顶层接口。
ApplicationContext是它的子接口。
BeanFactory和ApplicationContext的区别:
        创建对象的时间点不一样。
        ApplicationContext:只要一读取配置文件,默认情况下就会创建对象。
        BeanFactory:什么使用什么时候创建对象。

3.3 ApplicationContext接口的实现类

 
ClassPathXmlApplicationContext:
           它是从类的根路径下加载配置文件      推荐使用这种
FileSystemXmlApplicationContext:
           它是从磁盘路径上加载配置文件,配置文件可以在磁盘的任意位置。

 

3.4 IOC中bean标签和管理对象细节
    3.4.1 bean标签
    (1)作用
    •   用于配置对象让spring来创建的。
    •   默认情况下它调用的是类中的无参构造函数。如果没有无参构造函数则不能创建成功。
    (2)属性
属性名称
作用
id
给对象在容器中提供一个唯一标识
用于获取对象
class
指定类的全限定类名
用于反射创建对象。默认情况下调用无参构造函数。
scope
singleton
默认值,单例的
prototype
多例的
request
WEB项目中,Spring创建一个Bean的对象,将对象存入到request域中
session
WEB项目中,Spring创建一个Bean的对象,将对象存入到session域中
globalSession
WEB项目中,应用在Portlet环境.如果没有Portlet环境那么globalSession相当于session
init-method
指定类中的初始化方法名称
destroy-method
指定类中销毁方法名称
 
 
 
 
 
 
 
 
 
 
 
 
 
3.5 IOC中bean标签和管理对象细节

 

对象类别
属性值
范围
生命周期
单例对象
scope="singleton"
一个应用只有一个对象的实例。它的作用范围就是整个引用。
对象出生:当应用加载,创建容器时,对象就被创建了。
对象活着:只要容器在,对象一直活着。
对象死亡:当应用卸载,销毁容器时,对象就被销毁了。
多例对象
scope="prototype"
每次访问对象时,都会重新创建对象实例
对象出生:当使用对象时,创建新的对象实例。
对象活着:只要对象在使用中,就一直活着。
对象死亡:当对象长时间不用时,被java的垃圾回收器回收了。
 
 
 
 
 
 
 
 
3.6 实例化Bean的三种方式(了解)
    3.6.1 使用默认无参构造函数
<!--在默认情况下: 它会根据默认无参构造函数来创建类对象。如果bean中没有默认无参构造函数,将会创建失败。 -->
      <bean id="customerService" class="com.itheima.service.impl.CustomerServiceImpl" />

    3.6.2 spring管理静态工厂-使用静态工厂的方法创建对象

/**
 * 模拟一个静态工厂,创建业务层实现类
 */
public class StaticFactory {  
    public static ICustomerService createCustomerService(){
        return new CustomerServiceImpl();
    }
}
<!-- 此种方式是:
     使用StaticFactory类中的静态方法createCustomerService创建对象,并存入spring容器
     id属性:指定bean的id,用于从容器中获取
     class属性:指定静态工厂的全限定类名
     factory-method属性:指定生产对象的静态方法
 -->
<bean id="customerService"
      class="com.itheima.factory.StaticFactory"
      factory-method="createCustomerService"></bean>

  3.6.2 spring管理实例工厂-使用实例工厂的方法创建对象

/**
 * 模拟一个实例工厂,创建业务层实现类
 * 此工厂创建对象,必须现有工厂实例对象,再调用方法
 */
public class InstanceFactory {
    public ICustomerService createCustomerService(){
        return new CustomerServiceImpl();
    }
}
   <!-- 此种方式是:
         先把工厂的创建交给spring来管理。
        然后在使用工厂的bean来调用里面的方法
        factory-bean属性:用于指定实例工厂bean的id。
        factory-method属性:用于指定实例工厂中创建对象的方法。
    -->
    <beanid="instancFactory" class="com.itheima.factory.InstanceFactory"></bean>
    <beanid="customerService"
          factory-bean="instancFactory"
          factory-method="createCustomerService"></bean>

3.7 spring的依赖注入(重要)

    3.7.1  依赖注入的概念
它是spring框架核心ioc的具体实现方式。简单的说,就是坐等框架把对象传入,而不用我们自己去获取。
    3.7.2 构造函数注入
        该方法需要bean类提供有参构造方法
/**
 */
public class CustomerServiceImpl implements ICustomerService {
      
      private String name;
      private Integer age;
      private Date birthday;
           
      public CustomerServiceImpl(String name, Integer age, Date birthday) {
           this.name = name;
           this.age = age;
           this.birthday = birthday;
      }
 
      @Override
      public void saveCustomer() {
           System.out.println(name+","+age+","+birthday);    
      }
}
<!-- 使用构造函数的方式,给service中的属性传值
      要求:
           类中需要提供一个对应参数列表的构造函数。
      涉及的标签:
           constructor-arg
                 属性:
                      index:指定参数在构造函数参数列表的索引位置
                      type:指定参数在构造函数中的数据类型
                      name:指定参数在构造函数中的名称                           用这个找给谁赋值
                      
                      =======上面三个都是找给谁赋值,下面两个指的是赋什么值的==============
                      
                      value:它能赋的值是基本数据类型和String类型
                      ref:它能赋的值是其他bean类型,也就是说,必须得是在配置文件中配置过的bean
       -->
<bean id="customerService" class="com.itheima.service.impl.CustomerServiceImpl">
      <constructor-arg name="name" value="张三"></constructor-arg>
      <constructor-arg name="age" value="18"></constructor-arg>
      <constructor-arg name="birthday" ref="now"></constructor-arg>
</bean>
 
<bean id="now" class="java.util.Date"></bean>

3.7.3 set方法注入

    
    就是在类中提供需要注入成员的set方法
/**
 */
public class CustomerServiceImpl implements ICustomerService {
      
      private String name;
      private Integer age;
      private Date birthday;
      
      public void setName(String name) {
           this.name = name;
      }
      public void setAge(Integer age) {
           this.age = age;
      }
      public void setBirthday(Date birthday) {
           this.birthday = birthday;
      }
 
      @Override
      public void saveCustomer() {
           System.out.println(name+","+age+","+birthday);    
      }
}
 
<!-- 通过配置文件给bean中的属性传值:使用set方法的方式
      涉及的标签:
           property
           属性:
                 name:找的是类中set方法后面的部分
                 ref:给属性赋值是其他bean类型的
                 value:给属性赋值是基本数据类型和string类型的
      实际开发中,此种方式用的较多。
-->
<bean id="customerService" class="com.itheima.service.impl.CustomerServiceImpl">
           <property name="name" value="test"></property>
           <property name="age" value="21"></property>
           <property name="birthday" ref="now"></property>
</bean>
      
<bean id="now" class="java.util.Date"></bean>

 

3.7.4 使用p名称空间注入数据(本质还是调用set方法)
        此种方式是通过在xml中导入p名称空间约束,使用p:propertyName来注入数据,它的本质仍然是调用类中的set方法实现注入功能。
 
        java类代码:
/**
 * 使用p名称空间注入,本质还是调用类中的set方法
 */
public class CustomerServiceImpl4 implements ICustomerService {
      
      private String name;
      private Integer age;
      private Date birthday;
      
      public void setName(String name) {
           this.name = name;
      }
      public void setAge(Integer age) {
           this.age = age;
      }
      public void setBirthday(Date birthday) {
           this.birthday = birthday;
      }
      @Override
      public void saveCustomer() {
           System.out.println(name+","+age+","+birthday);    
      }
}

 

        xml配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 
          xmlns:p="http://www.springframework.org/schema/p"
         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">
                                       
      <bean id="customerService"
             class="com.itheima.service.impl.CustomerServiceImpl4"
             p:name="test" p:age="21" p:birthday-ref="now"/>
</beans>

 

    3.7.5 注入集合属性
           JAVA代码:
/**
 */
public class CustomerServiceImpl implements ICustomerService {
      
      private String[] myStrs;
      private List<String> myList;
      private Set<String> mySet;
      private Map<String,String> myMap;
      private Properties myProps;
      
      public void setMyStrs(String[] myStrs) {
           this.myStrs = myStrs;
      }
      public void setMyList(List<String> myList) {
           this.myList = myList;
      }
      public void setMySet(Set<String> mySet) {
           this.mySet = mySet;
      }
      public void setMyMap(Map<String, String> myMap) {
           this.myMap = myMap;
      }
      public void setMyProps(Properties myProps) {
           this.myProps = myProps;
      }
 
      @Override
      public void saveCustomer() {
           System.out.println(Arrays.toString(myStrs));
           System.out.println(myList);
           System.out.println(mySet);
           System.out.println(myMap);
           System.out.println(myProps);
      }
}

 

        配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 
      xmlns:p="http://www.springframework.org/schema/p"
      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">
 
      <!-- 注入集合数据 List结构的: array,list,set Map结构的 map,entry,props,prop -->
      <bean id="customerService" class="com.itheima.service.impl.CustomerServiceImpl">
           <!-- 在注入集合数据时,只要结构相同,标签可以互换 -->
           <!-- 给数组注入数据 -->
           <property name="myStrs">
                 <set>
                      <value>AAA</value>
                      <value>BBB</value>
                      <value>CCC</value>
                 </set>
           </property>
           <!-- 注入list集合数据 -->
           <property name="myList">
                 <array>
                      <value>AAA</value>
                      <value>BBB</value>
                      <value>CCC</value>
                 </array>
           </property>
           <!-- 注入set集合数据 -->
           <property name="mySet">
                 <list>
                      <value>AAA</value>
                      <value>BBB</value>
                      <value>CCC</value>
                 </list>
           </property>
           <!-- 注入Map数据 -->
           <property name="myMap">
                 <props>
                      <prop key="testA">aaa</prop>
                      <prop key="testB">bbb</prop>
                 </props>
           </property>
           <!-- 注入properties数据 -->
           <property name="myProps">
                 <map>
                      <entry key="testA" value="aaa"></entry>
                      <entry key="testB">
                            <value>bbb</value>
                      </entry>
                 </map>
           </property>
      </bean>
 
</beans>

 

 

Spring框架初识(一)

标签:classpath   垃圾回收   web项目   url   数据类型   alt   注意   div   set   

原文地址:http://www.cnblogs.com/menkan/p/7474905.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!