1、概述
Spring是Java最经典的框架之一,很多公司的项目直接采用SSM(Spring,SpringMVC,MyBatis)框架。所有学习SSM是非常有必要的。详细记录我学习SSM框架的内容,以便于以后的复习。
2、Spring容器
Spring容器为Spring框架的核心模块。主要作用是管理Spring框架中的类。方法是通过 Spring配置文件。
3、如何启动Spring容器(Maven项目)
1.导包
Maven的阿里云库坐标
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.2.8.RELEASE</version>
</dependency>
2.添加配置文件
将Spring.xml文件添加到src/main/resources目录下
文件内容如下:
<?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:context="http://www.springframework.org/schema/context"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">
</beans>
3.编写启动Spring容器的代码
在src/main/java下新建2个类
其中Person类为要注入Spring容器的类,Spring容器就可以管理(实例化,初始化等)此类.
MySpring类为测试用类,用来启动Spring容器的.当然用JUtil更方便.但是第一个测试,用比较熟悉的main方法.
Person类的内容为:
package spring;
public class Person {
public Person() {
System.out.println("Person()");//用于观察Person类的实例是否被创建
}
}
在spring.xml中添加一个<bean>元素.这就是让spring容器管理类的途径:
<bean id="person" class="spring.Person"></bean>
其中,id属于是唯一的,用来区分spring容器中管理的类,class元素指定要管理的类的完成路径(包名+类名).
MySpring类的内容为:
package spring;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MySpring {
public static void main(String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("spring.xml");//启动spring容器.指定spring文件的路径
}
}
从这一句代码就可以启动spring容器.然后查看控制台.
控制台已经将输出了Person类中无参构造器中的语句.说明spring容器已经实例化了Person类.