Hello,Spring

从上学期开始决心开始学习Spring,自己总是利用不好时间,到处瞎忙,结果浪费了好多时间。想着利用暑假的时间,专心看会儿书,嘿嘿,做一回学长。

最初我在Spring官网下载jar包的时候,忙会儿了半天愣是没找到下载的链接,瞬间觉得学Spring好难,莫名的抵触心理开始泛滥,无奈只好强抱度娘。这是我找到的链接。

教您怎么从spring 官网下载参考文档

附上小图:

Spring官网下载

嘿嘿,其实好简单哦,可是人家当时就是没找到嘛,也不想那么快地拥抱度娘23333……

Spring下载解压后可以看到lib目录下jar包确实有点多哦,每个jar包都有三个不同类型的,一种是含.class文件的jar包(….jar),这也是我们项目中需要的,还有两种是帮助文档(…-javadoc.jar)和源码(…-sources.jar)。以下内容纯粹是我的看书笔记哦,我是看的李刚的那本轻量级javaee。自己总是太快忘记一些事,还有一些人,所以记录下罗。

我看书写第一个Demo(setter、getter都删掉罗):

src/cn/edu/cqupt/MySpring/bean/Person.java
package cn.edu.cqupt.MySpring.bean.impl;

public class Person {

    private String name;
    private int age;

    public String toString(){
        return "Name:"+this.name+",age:"+this.age;
    }

}
src/beans.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:p="http://www.springframework.org/schema/p"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:util="http://www.springframework.org/schema/util"
        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/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
                http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.2.xsd"
                >
<bean id="person" class="cn.edu.cqupt.MySpring.bean.impl.Person">
    <property name="name" value="xiaofeig"/>
    <property name="age" value="20"/>
</bean>
</beans>
src/cn/edu/cqupt/MyString/test/TestMain.java
package cn.edu.cqupt.MySpring.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import cn.edu.cqupt.MySpring.bean.impl.Person;

public class TestMain {

    public static void main(String[] args) {
        ApplicationContext context=new ClassPathXmlApplicationContext("beans.xml");
        Person person=context.getBean("person",Person.class);
        System.out.println(person);
    }

}
打印结果:Name:xiaofeig,age:20

写完了,还是什么都不懂。

Spring的核心机制:依赖注入(Dependency Injection)

我们在xml文件中配置了一个编号为person的实例之后,Spring容器就负责帮助我们来创建这个实例,这个实例包含两个属性,分别为name和age,通过property标签来设置它的值value。配置完成之后,Spring容器就通过反射机制调用Person类的无参构造方法创建一个实例,然后再调用属性name,age的setter方法,为这两个属性设值。这应该就是最简单的依赖注入啦。我们只需要在容器ApplicationContext中通过实例编号person去取就可以啦。书上还有一些关于依赖关系的一些介绍,加入A组件调用了B组件的方法,我们可称A组件依赖于B组件。

依赖注入还有个特别高大上的名字,控制反转(Inversion of Control,IoC),有木有,是不是很难懂。

Spring推荐面向接口编程,更好地让规范和实现分离,写代码会更愉快……好有道理的样子,好吧,我会试试的!!!

下面的示例是注入一个复杂属性,就是将一个配置好的bean作为另一个bean的属性:

src/cn/edu/cqupt/MySpring/bean/Axe.java
package cn.edu.cqupt.MySpring.bean;

/**斧子,六级没过,原谅我不认识这个单词*/
public interface Axe {
    public String chop();
}
src/cn/edu/cqupt/MySpring/bean/impl/StoneAxe.java
package cn.edu.cqupt.MySpring.bean.impl;

import cn.edu.cqupt.MySpring.bean.Axe;

public class StoneAxe implements Axe {
    @Override
    public String chop() {
        return "石斧...";
    }
}
src/cn/edu/cqupt/MySpring/bean/impl/Person.java(setter、getter都删掉罗)
package cn.edu.cqupt.MySpring.bean.impl;

import cn.edu.cqupt.MySpring.bean.Axe;

public class Person {

    private String name;
    private int age;

    private Axe axe;

    public String toString(){
        return "Name:"+this.name+",age:"+this.age;
    }
}
src/beans.xml(部分代码)
<bean id="person" class="cn.edu.cqupt.MySpring.bean.impl.Person">
    <property name="name" value="xiaofeig"/>
    <property name="age" value="20"/>
    <property name="axe" ref="stoneAxe"/>
</bean>
<bean id="stoneAxe" class="cn.edu.cqupt.MySpring.bean.impl.StoneAxe"/>
src/cn/edu/cqupt/MyString/test/TestMain.java
package cn.edu.cqupt.MySpring.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import cn.edu.cqupt.MySpring.bean.Axe;
import cn.edu.cqupt.MySpring.bean.impl.Person;

public class TestMain {

    public static void main(String[] args) {
        ApplicationContext context=new ClassPathXmlApplicationContext("beans.xml");
        Person person=context.getBean("person",Person.class);
        Axe axe=person.getAxe();
        System.out.println(axe.chop());
    }

}
打印结果:石斧...

<property name="axe" ref="stoneAxe"/> 看这句,axe表示Person的属性,stoneAxe是我们配置的是一个实例的编号,通过ref这个标签属性,我们就可以轻松地将stoneAxe实例注入到Person的属性中,看起来是不是也很easy。

我看书到537页的时候,觉得最重要的一点就是依赖注入通过配置的方式将Bean实例之间代码层次的耦合分离了出来,我们可以清晰地透过xml文件观察到Bean实例之间的依赖关系。

书上原话总结了Spring IoC容器的3个基本要点:

  • 面向接口编程可以将各组件之间的耦合提升到接口层次,从而有利项目后期的扩展
  • 应用程度的各组件不再有程序主动产生,而是有Spring容器来负责产生、并初始化
  • Spring采用配置文件、或Annotation(注解,书后面会有提到,不过我总是用不来,新事物的自然抵触)来管理Bean的实现类、依赖关系,Spring容器通过配置文件利用反射来创建实例(所谓的依赖注入)

可以看出,上面写的Demo都是Spring容器利用setter方法来为实例注入属性值的,其实,我们也可以让容器利用有参构造方法来直接创建一个实例,这就是书上提到的构造注入。

src/cn/edu/cqupt/MySpring/bean/impl/Person.java(setter、getter都删掉罗)
package cn.edu.cqupt.MySpring.bean.impl;

import cn.edu.cqupt.MySpring.bean.Axe;

public class Person {

    private String name;
    private int age;
    private Axe axe;

    public Person(){}
    public Person(String name,int age,Axe axe){
        this.name=name;
        this.age=age;
        this.axe=axe;
    }
    public String toString(){
        return "Name:"+this.name+",age:"+this.age;
    }
}
src/beans.xml
<bean id="person" class="cn.edu.cqupt.MySpring.bean.impl.Person">
    <constructor-arg value="xiaofeig"/>
    <constructor-arg value="20"/>
    <constructor-arg ref="stoneAxe"/>
</bean>
<bean id="stoneAxe" class="cn.edu.cqupt.MySpring.bean.impl.StoneAxe"/>
src/cn/edu/cqupt/MySpring/test/TestMain.java
package cn.edu.cqupt.MySpring.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import cn.edu.cqupt.MySpring.bean.impl.Person;

public class TestMain {

    public static void main(String[] args) {
        ApplicationContext context=new ClassPathXmlApplicationContext("beans.xml");
        Person person=context.getBean("person",Person.class);
        System.out.println(person);
        System.out.println(person.getAxe().chop());
    }

}
打印结果:
Name:xiaofeig,age:20
石斧...

标签<constructor-arg/>就是用来构造注入的哦,标签的顺序就是构造参数的顺序,上面的实例比较简单,Person类只有一个有参构造方法,第二个属性在注入的时候直接将”20”转换成了整型,现在来假想一种情况,如果Person类还有一个构造方法,如:

public Person(String name,String age,Axe axe){
        this.name=name;
        this.axe=axe;
    }

这样会产生什么结果呢?我们再次调用测试方法

打印结果:
Name:xiaofeig,age:0
石斧...

是不是秒懂啊,Spring容器会优先考虑上面的那个构造方法,如果我们想让Spring容器先调用含int age的构造方法,可以设置标签property的属性type值为’int’。

<constructor-arg value="20" type="int"/>

可人我故意把有参构造方法注释掉了,意外在控制台发现了这样一句话:

hint: specify index/type/name arguments for simple parameters to avoid type ambiguities

没办法,英语水平棒棒哒,自信地打开了有道词典,意思应该是说为避免歧义,简单参数需要指定index/type/name这些属性。现在我们来好好看看<constructor-arg/>到底有哪些属性,index/name/value/type/ref,是不是一看就懂了,index应该是指定参数序列(从0开始),name指定参数名罗,type指定类型。有了这些属性,是不是就不会产生歧义啦。

好了,简单地了解了这两种构造方法,设值注入和构造注入,个人还是比较喜欢设值注入啦,简单嘛

时间: 2024-10-05 03:15:42

Hello,Spring的相关文章

Spring事务管理(详解+实例)

写这篇博客之前我首先读了<Spring in action>,之后在网上看了一些关于Spring事务管理的文章,感觉都没有讲全,这里就将书上的和网上关于事务的知识总结一下,参考的文章如下: Spring事务机制详解 Spring事务配置的五种方式 Spring中的事务管理实例详解 1 初步理解 理解事务之前,先讲一个你日常生活中最常干的事:取钱. 比如你去ATM机取1000块钱,大体有两个步骤:首先输入密码金额,银行卡扣掉1000元钱:然后ATM出1000元钱.这两个步骤必须是要么都执行要么都

SSM整合(spring,spirngmvc,mybatis)

整合思路   准备环境:导入jar包(spring mybatis  dbcp连接池  mysql驱动包 log4j) 工程结构: --------------------------- 1.  整合dao mybatis和spring进行整合   applicationContext-dao.xml 配置: 1.数据源 2.SqlSessionFactory 3.mapper扫描器 创建po以及mapper(通过逆向工程,这里不再演示) 针对综合查询mapper,一般情况会有关联查询,建议自定

Spring Boot 热部署

需要在pom.xml文件中加如下代码: 1 <dependencies> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-devtools</artifactId> 5 <optional>true</optional> 6 </dependency> 7 </depe

Spring多线程

Spring是通过TaskExecutor任务执行器来实现多线程和并发编程的.使用ThreadPoolTaskExecutor可实现一个基于线程池的TaskExecutor.而实际开发中任务一般是非阻碍的,即异步的,所以我们要在配置类中通过@EnableAsync开启对异步的支持,并通过在实际执行的Bean的方法中使用@Async注解来声明其是一个异步任务. 实例代码: (1)配置类 package com.lwh.highlight_spring4.ch3.taskexecutor; /**

Spring与JavaMail

JavaMail与Spring集成开发 spring框架集成JavaMail的主要包 2.mail.properties mail.smtp.host=smtp.163.com mail.smtp.auth=true mail.username=15511111111 mail.password=123 [email protected] 3.使用spring配置(applicationContext-mail.xml) <?xml version="1.0" encoding=

Spring Cloud ZooKeeper集成Feign的坑2,服务调用了一次后第二次调用就变成了500,错误:Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is com.n

错误如下: 2017-09-19 15:05:24.659 INFO 9986 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.spring[email protected]56528192: startup date [Tue Sep 19 15:05:24 CST 2017]; root of context hierarchy 2017-09-19 15:05:24.858 INFO 9986 --

Spring rabbitMq 中 correlationId或CorrelationIdString 消费者获取为null的问题

问题 在用Spring boot 的 spring-boot-starter-amqp   快速启动 rabbitMq 是遇到了个坑 消费者端获取不到:correlationId或CorrelationIdString 问题产生的原因 correlationId 的在 spring rabbitmq 2.0 以后 byte方式会被放弃,所以 目前 代码中有些地方没有改过来,应该算一个BUG @SuppressWarnings("deprecation") public class De

Spring框架之Spring AOP

一.基于注解管理的AOP 1.Spring配置文件 <!-- 配置自动扫描包,自动扫描Bean组件,切面类 --> <context:component-scan base-package="com.zhoujian.spring.anno,com.zhoujian.spring.test"> <!-- <context:include-filter type="annotation" expression="org.a

Swagger+ springfox +Spring mvc

简介 Swagger 是一个规范和完整的框架,用于生成.描述.调用和可视化 RESTful 风格的 Web 服务.总体目标是使客户端和文件系统作为服务器以同样的速度来更新.文件的方法,参数和模型紧密集成到服务器端的代码,允许API来始终保持同步.Swagger 让部署管理和使用功能强大的API从未如此简单.这一次我将从零开始搭建一个工程来演示如何在Spring mvc中整合Swagger生成Restful接口文档. 新建工程 我们新建一个Maven工程,并添加Web Facet,工程结构如下图所

Spring Aware

Spring的依赖注入最大亮点就是你所拥有的Bean对Spring容器的存在是没有意识的.即你可以将你的容器换成别的容器,如GOOGLE Guice,这时Bean之间的耦合度降低. 但是在实际的项目中,你不可避免的要用到Spring容器本身的资源,这时你的Bean必须要意识到Spring容器的存在,才能调用Spring所提供的资源,这就是所谓的Spring Aware.其实Spring Aware本来就是Spring设计用来框架内部使用的,如果使用了Spring Aware,那么你的Bean其实