文章目录
概述简单项目搭建
一.Spring概述
- Spring是一个开源框架
- Spring为简化企业级开发而生,使用Spring,JavaBean就可以实现很多以前要靠EJB才能实现的功能。同样的功能,在EJB中要通过繁琐的配置和复杂的代码才能够实现,而在Spring中却非常的优雅和简洁。
- Spring是一个IOC(DI)和AOP容器框架。 IOC详解
- Spring的优良特性
① 非侵入式:基于Spring开发的应用中的对象可以不依赖于Spring的API
② 依赖注入:DI——Dependency Injection,反转控制(IOC)最经典的实现。
③ 面向切面编程:Aspect Oriented Programming——AOP
④ 容器:Spring是一个容器,因为它包含并且管理应用对象的生命周期
⑤ 组件化:Spring实现了使用简单的组件配置组合成一个复杂的应用。在 Spring 中可以使用XML和Java注解组合这些对象。 - 一站式:在IOC和AOP的基础上可以整合各种企业应用的开源框架和优秀的第三方类库(实际上Spring 自身也提供了表述层的SpringMVC和持久层的Spring JDBC)。
二.搭建一个简单的Spring项目
1.创建一个Dynamic Web project
2.加入jar包:
commons-logging-1.1.1.jar
spring-beans-4.0.0.RELEASE.jar
spring-context-4.0.0.RELEASE.jar
spring-core-4.0.0.RELEASE.jar
spring-expression-4.0.0.RELEASE.jar
3.创建一个Person类
package com.bean;
public class Person {
private Integer id;
private String name;
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 Person() {
super();
// TODO Auto-generated constructor stub
}
public Person(Integer id, String name) {
super();
this.id = id;
this.name = name;
}
@Override
public String toString() {
return "Person [id=" + id + ", name=" + name + "]";
}
}
4.创建一个Spring配置文件applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<!-- beans命名空间 -->
<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">
<!-- bean:定义一个可由IOC容器创建的对象 -->
<!-- id:指定用于引用bean实例的标识 -->
<!-- class:指定用于创建bean的全类名 -->
<bean id="person" class="com.bean.Person" scope="">
<property name="id" value="1111"></property>
<property name="name" value="小明"></property>
</bean>
</beans>
5.创建一个测试类Test
package com.bean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Test {
public static void main(String []args) {
//初始化容器 import的时候可千万别导错了
ApplicationContext ac =new ClassPathXmlApplicationContext("applicationContext.xml");
Person person=(Person)ac.getBean("person",Person.class);
System.out.println(person);
}
}