Spring框架总结一---Spring概述简单项目搭建

概述简单项目搭建

一.Spring概述

  1. Spring是一个开源框架
  2. Spring为简化企业级开发而生,使用Spring,JavaBean就可以实现很多以前要靠EJB才能实现的功能。同样的功能,在EJB中要通过繁琐的配置和复杂的代码才能够实现,而在Spring中却非常的优雅和简洁。
  3. Spring是一个IOC(DI)和AOP容器框架。 IOC详解
  4. Spring的优良特性
    ① 非侵入式:基于Spring开发的应用中的对象可以不依赖于Spring的API
    ② 依赖注入:DI——Dependency Injection,反转控制(IOC)最经典的实现。
    ③ 面向切面编程:Aspect Oriented Programming——AOP
    ④ 容器:Spring是一个容器,因为它包含并且管理应用对象的生命周期
    ⑤ 组件化:Spring实现了使用简单的组件配置组合成一个复杂的应用。在 Spring 中可以使用XML和Java注解组合这些对象。
  5. 一站式:在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

Eclipse中的buildpath详解
在这里插入图片描述

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);
	}
}

6.项目结构

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值