java框架之Spring(1)-入门
介绍
概述
Spring 是一个开放源代码的设计层面框架,它解决的是业务逻辑层和其他各层的松耦合问题,因此它将面向接口的编程思想贯穿整个系统应用。Spring 是于 2003 年兴起的一个轻量级的 Java 开发框架,由 Rod Johnson 创建。简单来说,Spring 是一个分层的 JavaSE/EE full-stack (一站式) 轻量级开源框架。
下载
入门
IoC
控制反转(Inversion of Control,缩写为 IoC),是面向对象编程中的一种设计原则,可以用来减低计算机代码之间的耦合度。其中最常见的方式叫做依赖注入(Dependency Injection,简称 DI),还有一种方式叫“依赖查找”(Dependency Lookup)。通过控制反转,对象在被创建的时候,由一个调控系统内所有对象的外界实体,将其所依赖的对象的引用传递给它。也可以说,依赖被注入到对象中。
- 理解 IoC 和 DI :
-
IoC :控制反转,将对象的创建权交给了 Spring。
DI :依赖注入,前提必须有 IoC 的环境,Spring 管理一个类时将类依赖的属性注入(设置)进来,就是 DI 的过程。
引入jar包
添加配置文件
在 src 下添加名为 'applicationContext.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"> <!--配置文件约束在 spring-framework-4.2.4.RELEASE\docs\spring-framework-reference\html\xsd-configuration.html 下可以找到--> </beans>
简单使用
package com.zze.dao; public interface UserDao { void save(); }
com.zze.dao.UserDao
package com.zze.dao.impl; import com.zze.dao.UserDao; public class UserDaoImpl implements UserDao { @Override public void save() { System.out.println("from UserDaoImpl.save()"); } }
com.zze.dao.impl.UserDaoImpl
<?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"> <!--配置文件约束在 spring-framework-4.2.4.RELEASE\docs\spring-framework-reference\html\xsd-configuration.html 下可以找到--> <bean id="userDao" class="com.zze.dao.impl.UserDaoImpl"></bean> </beans>
applicationContext.xml
/** * 原有方式创建 Bean */ @Test public void test1(){ UserDao userDao = new UserDaoImpl(); userDao.save(); } /** * 从 Spring 中获取 Bean */ @Test public void test2(){ ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); UserDao userDao = (UserDao) applicationContext.getBean("userDao"); userDao.save(); }
test
Spring的工厂类
BeanFactory :老版本的工厂类,调用 getBean 时才会生成类的实例。
ApplicationContext :新版本的工厂类,加载配置文件时就会将 Spring 管理的类实例化。
- ClassPathXmlApplicationContext :加载类路径下的配置文件。
- FileSystemXmlApplicationContext :加载文件系统下的配置文件。
配置相关
Bean标签
属性:
- id :使用了唯一约束,不能出现特殊字符。
- name :没有使用唯一约束(理论上是可以出现重复的,但是实际开发中是不能出现的),可以出现特殊字符。
- init-method :初始化时执行该方法(在构造方法之后)。
- destroy-method :销毁时执行该方法(默认情况下 Spring 创建的 Bean 是单例的,在工厂类 ApplicationContext 实例 Close 时执行)。
- scope :配置 Bean 的作用范围。
scope 有如下几个可选值:
singleton :默认值,Spring 会采用单例模式创建这个对象。
prototype :多例的。
request :应用在 web 项目中,Spring 创建这个类对象后,将这个对象存放到 request 范围中。
session :应用在 web 项目中,Spring 创建这个类对象后,将这个对象存放的 session 范围中。
globalsession :应用在 web 项目中,必须在 porlet 环境下使用。
Spring的属性注入
为方便下面测试,先新建如下类:
package com.zze.bean; public class Department { public Department() { } public Department(String name) { this.name = name; } private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return "Department{" + "name='" + name + '\'' + '}'; } }
com.zze.bean.Department
package com.zze.bean; public class User { public User() { } public User(String name, Integer age, Department department) { this.name = name; this.age = age; this.department = department; } private String name; private Integer age; private Department department; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public Department getDepartment() { return department; } public void setDepartment(Department department) { this.department = department; } @Override public String toString() { return "User{" + "name='" + name + '\'' + ", age=" + age + ", department=" + department + '}'; } }
com.zze.bean.User
构造方法注入
<bean name="department" class="com.zze.bean.Department"> <constructor-arg name="name" value="信息部"/> </bean> <bean name="user" class="com.zze.bean.User"> <constructor-arg name="name" value="李四"/> <constructor-arg name="age" value="30"/> <constructor-arg name="department" ref="department"/> </bean>
@Test public void test1() { ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); Object user = applicationContext.getBean("user"); System.out.println(user); /* User{name='李四', age=30, department=Department{name='信息部'}} */ }
test
set方法注入
<bean name="department" class="com.zze.bean.Department"> <property name="name" value="信息部"/> </bean> <bean name="user" class="com.zze.bean.User"> <property name="name" value="张三"/> <property name="age" value="12"/> <property name="department" ref="department"/> </bean>
@Test public void test2() { ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); Object user = applicationContext.getBean("user"); System.out.println(user); /* User{name='张三', age=12, department=Department{name='信息部'}} */ }
test
p名称空间注入
<!-- 在 Spring 2.5 之后支持。 需在 beans 标签中添加属性 xmlns:p="http://www.springframework.org/schema/p" 来引入 p 名称空间 --> <bean name="department" class="com.zze.bean.Department" p:name="信息部"/> <bean name="user" class="com.zze.bean.User" p:name="张三" p:age="21" p:department-ref="department"/>
@Test public void test3() { ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); Object user = applicationContext.getBean("user"); System.out.println(user); /* User{name='张三', age=21, department=Department{name='信息部'}} */ }
test
SpEL注入
<!-- 在 Spring 3.0 之后支持。 --> <bean name="department" class="com.zze.bean.Department"> <property name="name" value="#{'推广部'}"/> </bean> <bean name="user" class="com.zze.bean.User"> <property name="name" value="#{'李四'}"/> <!--在表达式中可以有计算操作,并且可以直接调用对象属性及方法--> <property name="age" value="#{10+22}"/> <property name="department" ref="department"/> </bean>
@Test public void test4() { ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); Object user = applicationContext.getBean("user"); System.out.println(user); /* User{name='李四', age=32, department=Department{name='推广部'}} */ }
test
- 注入 Array 类型:
-
package com.zze.bean; import java.util.Arrays; public class Customer { private String name; private String[] hobbies; public String getName() { return name; } public void setName(String name) { this.name = name; } public String[] getHobbies() { return hobbies; } public void setHobbies(String[] hobbies) { this.hobbies = hobbies; } @Override public String toString() { return "Customer{" + "name='" + name + '\'' + ", hobbies=" + Arrays.toString(hobbies) + '}'; } }
com.zze.bean.Customer
<!-- List 和 Set 的注入方式与 Array 一致 --> <bean name="customer" class="com.zze.bean.Customer"> <property name="name" value="二狗"/> <property name="hobbies"> <list> <value>吃饭</value> <value>睡觉</value> <value>打豆豆</value> </list> </property> </bean>
@Test public void test5() { ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); Object user = applicationContext.getBean("customer"); System.out.println(user); /* Customer{name='二狗', hobbies=[吃饭, 睡觉, 打豆豆]} */ }
test
- 注入 Map 类型:
-
package com.zze.bean; import java.util.Map; public class TestBean { private Map<String, Object> map; public Map<String, Object> getMap() { return map; } public void setMap(Map<String, Object> map) { this.map = map; } @Override public String toString() { return "TestBean{" + "map=" + map + '}'; } }
com.zze.bean.TestBean
<bean id="testBean" class="com.zze.bean.TestBean"> <property name="map"> <map> <entry key="1" value="a"/> <entry key="2" value="b"/> <entry key="3" value="c"/> </map> </property> </bean>
@Test public void test6(){ ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); Object testBean = applicationContext.getBean("testBean"); System.out.println(testBean); /* TestBean{map={1=a, 2=b, 3=c}} */ }
test
分模块配置
第一种方式是在创建工厂实例时一次性加载所有指定的配置文件,例:
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext1.xml","applicationContext2.xml");
第二种方式是通过配置文件中的 import 标签引入其它的配置文件,例:
<import resource="com/zze/dao/applicationContext-dao.xml"/>
java框架之Spring(1)-入门的更多相关文章
- java框架篇---spring AOP 实现原理
什么是AOP AOP(Aspect-OrientedProgramming,面向方面编程),可以说是OOP(Object-Oriented Programing,面向对象编程)的补充和完善.OOP引入 ...
- java框架之Spring(2)-注解配置IOC&AOP配置
注解配置IoC 准备 1.要使用注解方式配置 IoC,除了之前引入的基础 jar 包,还需要引入 spring-aop 支持包,如下: 2.在 applicationContext.xml 中引入 c ...
- java框架之SpringBoot(1)-入门
简介 Spring Boot 用来简化 Spring 应用开发,约定大于配置,去繁从简,just run 就能创建一个独立的.产品级别的应用. 背景: J2EE 笨重的开发.繁多的配置.低下的开发效率 ...
- 【Java框架型项目从入门到装逼】第一节 - Spring框架 IOC的丧心病狂解说
大家好,好久不见,今天我们来一起学习一下关于Spring框架的IOC技术. 控制反转--Spring通过一种称作控制反转(IoC)的技术促进了松耦合.当应用了IoC,一个对象依赖的其它对象会通过被动的 ...
- 【Java框架型项目从入门到装逼】第二节 - Spring框架 AOP的丧心病狂解说,你喜欢露娜的月下无限连吗?
继续上一节的内容,多几个jar包: aop技术是面向切面编程思想,作为OOP的延续思想添加到企业开发中,用于弥补OOP开发过程中的缺陷而提出的编程思想.AOP底层也是面向对象:只不过面向的不是普通的O ...
- 【Java框架型项目从入门到装逼】第七节 - 学生管理系统项目搭建
本次的教程是打算用Spring,SpringMVC以及传统的jdbc技术来制作一个简单的增删改查项目,对用户信息进行增删改查,就这么简单. 1.新建项目 首先,打开eclipse,新建一个web项目. ...
- java框架之MyBatis(1)-入门&动态代理开发
前言 学MyBatis的原因 1.目前最主流的持久层框架为 Hibernate 与 MyBatis,而且国内公司目前使用 Mybatis 的要比 Hibernate 要多. 2.Hibernate 学 ...
- java框架之SpringMVC(1)-入门&整合MyBatis
前言 SpringMVC简介 SpringMVC 是一个类似于 Struts2 表现层的框架,属于 SpringFramework 的后续产品. 学习SpringMVC的原因 SpringMVC 与 ...
- java框架篇---spring IOC 实现原理
IOC(DI):其实这个Spring架构核心的概念没有这么复杂,更不像有些书上描述的那样晦涩.java程序员都知道:java程序中的每个业务逻辑至少需要两个或以上的对象来协作完成,通常,每个对象在使用 ...
随机推荐
- yaf项目将500错误打印到页面上
一般在yaf项目调试的时候,如果代码有错误,页面只会响应500错误,但看不到哪里报了什么错误,通过开启yaf的一个配置可以将错误信息显示在页面上. 打开项目的index.php入口文件,在开头加入如下 ...
- 【OCR技术系列之七】端到端不定长文字识别CRNN算法详解
在以前的OCR任务中,识别过程分为两步:单字切割和分类任务.我们一般都会讲一连串文字的文本文件先利用投影法切割出单个字体,在送入CNN里进行文字分类.但是此法已经有点过时了,现在更流行的是基于深度学习 ...
- 当 return 遇到 try
. . . . . 今天有同事和我探讨在群里看到的一道有趣的题目,在探讨的过程中让我搞清楚了一些曾经模糊的概念,特此记录下来. 题目给出如下代码,问运行后打印的结果是什么. public static ...
- 关于 GET、POST、表单、Content-Type
关于 GET.POST.表单.Content-Type headers HTTP 的请求头,在这里也可以放参数,不论 GET 请求或 POST 请求都可以. GET 请求 GET 请求的参数都在 UR ...
- 【ML入门系列】(三)监督学习和无监督学习
概述 在机器学习领域,主要有三类不同的学习方法: 监督学习(Supervised learning) 非监督学习(Unsupervised learning) 半监督学习(Semi-supervise ...
- Gin框架初识
一.安装 使用go下载gin库,命令行输入:go get github.com/gin-gonic/gin ,一般使用需要的依赖: import "github.com/gin-gonic/ ...
- 【hbase】Unable to read additional data from client sessionid 0x15c92bd1fca0003, likely client has closed socket
启动hbase ,验证出错 Master is initializing 查看zk日志,发现Unable to read additional data from client sessionid 0 ...
- 运用kmp算法解决的一些问题的简单题解
学习kmp算法我最后是看的数据结构书上的一本教材学会的..我认为kmp相对于普通的BF算法就是避免了非常多不必要的匹配.而kmp算法的精髓自然就在于next数组的运用...而next数组简而言之就是存 ...
- 第一篇:你不一定了解的"推荐系统"
前言 [推荐系统 - 基础教程]可能是穆晨的所有博文里,最有趣最好玩的一个系列了^ ^. 作为该系列的[入门篇],本文将轻松愉快地向读者介绍推荐系统这项大数据领域中的热门技术. 为什么要有推荐系统? ...
- LeetCode - 703. Kth Largest Element in a Stream
Design a class to find the kth largest element in a stream. Note that it is the kth largest element ...