Spring01

目录

1.什么是Spring

2.代码


1.什么是Spring

       Spring是一个开源框架,它由Rod Johnson创建。它是为了解决企业应用开发的复杂性而创建的。

Spring使用基本的JavaBean来完成以前只可能由EJB完成的事情。
然而,Spring的用途不仅限于服务器端的开发。从简单性、可测试性和松耦合的角度而言,任何Java应用都可以从Spring中受益。
目的:解决企业应用开发的复杂性
功能:使用基本的JavaBean代替EJB,并提供了更多的企业应用功能
范围:任何Java应用
简单来说,Spring是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器框架。
 

2.代码

userbiz:

package com.heminjie.biz;

/**
 * 
 * @author 
 * 
 * 名称:用户业务类
 * 需求:
 * 		同时在用户模块,订单模块所拿到所有的用户数据
 * 
 * 需求变更1:
 * 	同时在用户模块,订单模块拿到所有的用户数据,并且要求用户数据是已经通过年龄排序的
 * 	对应策略:修改userBiz中list方法,添加排序功能
 * 
 * 需求变更2:
 * 	同时在用户模块,订单模块拿到所有的用户数据,并且要求用户数据是已经通过时间点排序的
 * 	对应策略:修改userBiz中list方法,添加排序功能,按照时间点排序
 * 
 * 
 * 总结:
 * 	最原始:频繁修改业务层biz层代码
 * 	多实现:凡是涉及到用户业务层调用的地方,都需要修改代码
 * 。。。
 * 时间:2022年8月4日 下午7:00:25
 */
public interface UserBiz {
	void list();
}

userBizimpl1:

package com.heminjie.impl;

import com.heminjie.biz.UserBiz;

public class UserBizImpl1 implements UserBiz{

	@Override
	public void list() {
		System.out.println("查询用户数据,按照入职时间排序。。。。。");
		
	}

}

UserBizImpl2:

package com.heminjie.impl;

import com.heminjie.biz.UserBiz;

public class UserBizImpl2 implements UserBiz{

	@Override
	public void list() {
		System.out.println("查询用户数据,按照入职年龄排序。。。。。");
		
	}

}

Demo1:

package com.heminjie.ioc.demo;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.heminjie.web.OrderAction;
import com.heminjie.web.UserAction;

/**
 * 1.对sqpring框架的配置文件进行建模,建模之后 spring-context.xml中所有的javabean信息都
 * 都会加载进Spring  容器的上下文
 * 2.上下文中就包含了spring-context.xml 所有对象
 * 
 * IOC的特点-什么叫控制反转
 * 指的是将创建对象的权利反转个给spring容器来完成
 * 
 * @author
 * 名称:
 * 时间:2022年8月5日 下午2:10:57
 */
public class Demo1 {
	@SuppressWarnings("resource")
	public static void main(String[] args) {
		ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("/spring-context.xml");
		UserAction useraction =(UserAction) context.getBean("userAction");
		useraction.list();
		
		OrderAction orderAction =(OrderAction) context.getBean("orderAction");
		orderAction.list();
		
	}
}

DemoServlet

package com.heminjie.ioc.demo;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.heminjie.web.UserAction;

/**
 * spring与web容器的整合原理
 * why:建模的过程是十分耗时的
 * 解决问题:
 * 		1.建模必不可少
 * 		2.建模要保障只执行一次
 * 		3.建模后期望在每一次servlet都能够拿到Spring的上下文对象ClassPathXmlApplicationContext
 * 
 * how:
 * 	1.监听器的初始化方法
 * 	2.Spring的上下要存放在tomcat上下文中
 * 
 * @author
 * 名称:
 * 时间:2022年8月5日 下午4:15:12
 */


@WebServlet("/springDemo")
public class DemoServlet extends HttpServlet{
	
	@Override
	protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
		//Thread.sleep(10000);
		//ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("/spring-context.xml");
		ClassPathXmlApplicationContext context = (ClassPathXmlApplicationContext) req.getServletContext().getAttribute("servletContext");
		UserAction useraction =(UserAction) context.getBean("userAction");
		useraction.list();
	}
	
	
	
}

SpringLoadListener:

package com.heminjie.ioc.listener;

import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.heminjie.web.UserAction;

public class SpringLoadListener implements ServletContextListener{
	
	@Override
	public void contextInitialized(ServletContextEvent sce) {
		System.out.println("初始化");
		ServletContext servletContext = sce.getServletContext();
		String springconfiglocation = servletContext.getInitParameter("springconfiglocation");
		System.out.println(springconfiglocation+"...");
		//拿到Spring上下文
		ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("/spring-context.xml");
		//将Spring上下文保存到tomcat上下文中
		servletContext.setAttribute("servletContext", servletContext);
	
	}
	
}

OrderAction:

package com.heminjie.web;

import java.util.List;

import com.heminjie.biz.UserBiz;
import com.heminjie.impl.UserBizImpl1;

public class OrderAction {

//	private UserBiz userbiz = new UserBizImpl1();
	
	
	private UserBiz userbiz;
	
	public UserBiz getUserbiz() {
		return userbiz;
	}

	public void setUserbiz(UserBiz userbiz) {
		this.userbiz = userbiz;
	}
	
	
	private String name;
	private int age;
	private List<String> hobby;
	
	
	
	public OrderAction() {

	}
	public OrderAction(String name, int age, List<String> hobby) {
		this.name = name;
		this.age = age;
		this.hobby = hobby;
	}

	public void list() {
		System.out.println(name);
		System.out.println(age);
		System.out.println(hobby);
		userbiz.list();
	}
	
	
}

UserAction:

package com.heminjie.web;

import java.util.List;

import com.heminjie.biz.UserBiz;


/**
 * 依赖注入的方式:
 * 1.set注入
 * 2.构造注入
 * 3.自动装配
 * 	default-autowire="byType"
 * 		byName:是spring管理的bean对象的id进行查找,如果找不到则注入失败;反之成功
 * 		byType:是Spring管理bean对象接口实现类进行查找;如果没有或2个以上,则注入失败,反之成功
 * @author 
 * 名称:
 * 时间:2022年8月5日 下午2:39:26
 */

public class UserAction {
//	private UserBiz userbiz = new UserBizImpl1();
	
	private UserBiz userbiz;
	
	
	
	public UserBiz getUserbiz() {
		return userbiz;
	}

	public void setUserbiz(UserBiz userbiz) {
		this.userbiz = userbiz;
	}


	
	private String name;
	private int age;
	private List<String> hobby;
	
	

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getAge() {
		return age;
	}

	public void setAge(int age) {
		this.age = age;
	}

	public List<String> getHobby() {
		return hobby;
	}

	public void setHobby(List<String> hobby) {
		this.hobby = hobby;
	}
	
	
	

	public void list() {
		System.out.println(name);
		System.out.println(age);
		System.out.println(hobby);
		userbiz.list();
	}
	
}

spring-context.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:aop="http://www.springframework.org/schema/aop"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">

<!-- IOC的主要作用管理整个项目的javabean,依靠依赖注入,控制反转的特点进行管理 -->
<!-- 	<bean class="com.heminjie.impl.UserBizImpl1" id="userBiz1"></bean>-->	
 	<bean class="com.heminjie.impl.UserBizImpl1" id="userBiz"></bean>
 	<!-- <bean class="com.heminjie.impl.UserBizImpl1" id="userbiz1"></bean> -->
<!--  set注入-->
	<bean class="com.heminjie.web.UserAction" id="userAction">
		<property name="userbiz" ref="userBiz"></property>
		<property name="name" value="luoluo"></property>
		<property name="age" value="22"></property>
		<property name="hobby">
			<list>
				<value>玩鬼屋</value>
				<value>吓别人</value>
				<value>好开心</value>
			</list>
		</property>
	</bean>
	<!-- 构造注入 -->
	<bean class="com.heminjie.web.OrderAction" id="orderAction">
		<property name="userbiz" ref="userBiz"></property>
		<constructor-arg name="name" value="lele"></constructor-arg>
		<constructor-arg name="age" value="112"></constructor-arg>
		<constructor-arg name="hobby">
			<list>
				<value>玩密室</value>
				<value>很烧脑</value>
				<value>超喜欢</value>
			</list>
		</constructor-arg>
	</bean>

</beans>

web.xml:


```java
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
  <display-name>Archetype Created Web Application</display-name>
	
  <context-param>
  	<param-name>springconfiglocation</param-name>
 	<param-value>/applicationContext.xml</param-value>
  </context-param>
  <listener>
  	<listener-class>com.heminjie.ioc.listener.SpringLoadListener</listener-class>
  </listener>

</web-app>

pom.xml

pom.xml

```java

```xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.javaxl</groupId>
	<artifactId>spring</artifactId>
	<packaging>war</packaging>
	<version>0.0.1-SNAPSHOT</version>
	<name>spring Maven Webapp</name>
	<url>http://maven.apache.org</url>
	<!-- 当前项目所用的jar依赖版本定义在外部,目的在于所有的jar包版本进行统一管理  -->
	
	<properties>
		<spring.version>5.0.1.RELEASE</spring.version>
		<javax.servlet.version>4.0.0</javax.servlet.version>
		<junit.version>4.12</junit.version>
	</properties>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>3.8.1</version>
			<scope>test</scope>
		</dependency>
		<!-- 2、导入spring依赖 -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-aspects</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<!-- 5.1、junit -->
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<!-- 5.2、servlet -->
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
			<version>${javax.servlet.version}</version>
			<scope>provided</scope>
		</dependency>
	</dependencies>
	<build>
		<finalName>spring</finalName>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.7.0</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值