python虚拟环境配置
2021-04-03 01:27
标签:情况 环境配置 安装步骤 window 需要 命名 使用 依赖包 name 控制反转IOC(Inversion of Control)是一种设计思想,DI(依赖注入)是实现IOC的一种方法。在没有IOC的程序中,我们使用面向对象编程,对象的创建于对象间的依赖完全硬编码在程序中,对象的创建有程序自己控制;控制反转后将对象的创建转移给第三方; 控制反转是一种通过描述XML(或注解)并通过第三方去生产或获取特定对象的方式。在Spring中实现控制反转的是IOC容器,其实现方法是依赖注入(Dependency Injection,DI) IOC演示: UserDao接口 UserDaoImpl实现类 UserService业务接口 UserServiceImpl业务实现类 这里使用一个Set方法实现 这种思想,从本质上解决了问题,程序员不用再去管理对象的创建了,系统的耦合性大大降低,可以更加专注在业务的实现上。这就是IOC的原型。 Spring的核心就是基于IOC容器,将对象的创建以及依赖的注入全部交由Spring容器来完成。 首先基于如上接口和业务创建两个接口实现类: 创建applicationContext.xml文件 基于XML的配置元数据的基本结构: 测试: 现在,我们彻底不用在程序中去改动了,要实现不同的操作,只需要在XML中进行修改; 这个过程就叫控制反转: IOC是一种编程思想,由主动的编程变为被动的接收。 总结为一句话:对象由Spring来创建,管理,装配。 默认使用无参构造创建对象 自定义使用有参构造创建对象 下标赋值 参数名赋值 根据类型赋值(有同类型参数时则会有问题) 总结:在配置文件加载的时候,容器中管理的对象就已经初始化了。 IOC的一个重点是在系统运行中,动态的向某个对象提供它所需要的其他对象。这一点是通过DI(Dependency Injection,依赖注入)来实现的。 DI的实现原理是反射(reflection),它允许程序在运行的时候动态的生成对象、执行对象的方法、改变对象的属性,Spring就是通过反射来实现注入的。 理解DI的关键是:“谁依赖谁,为什么需要依赖,谁注入谁,注入了什么”,那我们来深入分析一下: 谁依赖于谁:是应用程序依赖于IoC容器; 为什么需要依赖:应用程序需要IoC容器来提供对象需要的外部资源; 谁注入谁:是IOC容器注入应用程序依赖的某个对象; 注入了什么:就是注入某个对象所需要的外部资源(包括对象、资源、常量数据)。 默认使用无参构造创建对象 自定义使用有参构造创建对象: 【环境搭建】 复杂类型 测试对象 beans.xml 测试类 测试结果 总结:在配置文件加载的时候,容器中管理的对象就已经初始化了。 可以使用p命名空间和c命名空间进行注入: p命名(properties) c命名(constructor) 注意:p命名和c命名空间不能直接使用,需要导入xml约束 单例模式(Spring默认机制) bean的一个共享实例,并且所有对具有ID或与该bean定义相匹配的ID的bean的请求都会导致该特定的bean实例由Spring容器返回 原型模式: 每次对特定bean提出请求时,bean部署的非单一原型范围都会创建一个新的bean实例 其余的request、session、application等只能在web开发中使用,对应的就是这三类作用域。 python虚拟环境配置 标签:情况 环境配置 安装步骤 window 需要 命名 使用 依赖包 name 原文地址:https://www.cnblogs.com/crystal1126/p/13469170.htmlIOC与DI的理解及使用
public interface UserDao {
void getUser();
}
public class UserDaoImpl implements UserDao{
public void getUser() {
System.out.println("默认获取用户");
}
}
public interface UserService {
void getUser();
void setUserDao(UserDao userDao);
}
public class UserServiceImpl implements UserService {
private UserDao userDao ;
//利用set进行动态实现值的注入
public void setUserDao(UserDao userDao){
this.userDao = userDao;
}
public void getUser() {
userDao.getUser();
}
}
private UserDao userDao ;
//利用set进行动态实现值的注入
public void setUserDao(UserDao userDao){
this.userDao = userDao;
}
//代替了原先主动在该类中穿创建对象:
//userDao = new UserDao();
1、第一个spring
public class UserDaoMysqlImpl implements UserDao{
public void getUser() {
System.out.println("mysql获取用户");
}
}
public class UserOracleImpl implements UserDao{
public void getUser() {
System.out.println("oracle获取用户");
}
}
public class MyTest {
public static void main(String[] args) {
//获取Spring的上下文对象ApplicationContext
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//对象已经在Spring中管理了,使用时直接根据bean id取即可
UserServiceImpl serviceImpl = (UserServiceImpl) context.getBean("userServiceImpl");
serviceImpl.getUser();
}
}
2、IOC创建对象的方法
3、DI(依赖注入)
1、构造器注入
*2、set方式注入
public class Address {
private String address;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
@Override
public String toString() {
return "Address{" +
"address=‘" + address + ‘\‘‘ +
‘}‘;
}
}
@Data
public class Student {
private String name;
private Address address;
private String[] books;
private List
public class MyTest2 {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Student student = (Student) context.getBean("student");
System.out.println();
}
}
Student{
name=‘ps‘,
address=Address{address=‘address‘},
books=[西游记, 三国演义, 红楼梦, 水浒传],
hobbies=[唱歌, 打游戏],
card={学生证=147596654, 身份证=33216541236542512},
games=[LOL, CS],
wife=‘null‘,
info={性别=男, 年龄=18}
}
3、拓展
xmlns:p="http://www.springframework.org/schema/p"
xmlns:c="http://www.springframework.org/schema/c"
4、bean的作用域
Scope
Description
singleton
(Default) Scopes a single bean definition to a single object instance for each Spring IoC container.
prototype
Scopes a single bean definition to any number of object instances.
request
Scopes a single bean definition to the lifecycle of a single HTTP request. That is, each HTTP request has its own instance of a bean created off the back of a single bean definition. Only valid in the context of a web-aware Spring
ApplicationContext
.
session
Scopes a single bean definition to the lifecycle of an HTTP
Session
. Only valid in the context of a web-aware Spring ApplicationContext
.
application
Scopes a single bean definition to the lifecycle of a
ServletContext
. Only valid in the context of a web-aware Spring ApplicationContext
.
websocket
Scopes a single bean definition to the lifecycle of a
WebSocket
. Only valid in the context of a web-aware Spring ApplicationContext
.
上一篇:直接插入排序
下一篇:通用实例列表排序实现