摘要:
1. 注入方式 分别为 构造器注入 (上一个随笔用的) set注入 【重点】 依赖注入:set注入! 依赖:bean对象的创建依赖于容器 注入:bean对象的所有属性 由容器来注入 2.环境搭建 stuent类和address类 package com.why; import java.util.* 阅读全文
摘要:
1.简单建立一个User类 package com.why; /** * @program: Spring * @description: * @author: @why * @create: 2020-08-30 16:19 **/ public class User { private Stri 阅读全文
摘要:
1.导入maven的pom.xml <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> <dependency> <groupId>org.springframework</groupId> <a 阅读全文
摘要:
1.IOC:Inversion of Control(控制反转) 之前的开发过程 UserDao 接口 UserDaoIml 实现 UserService 接口 UserServiceiml 实现 随着需求的不断增加,我们就需要不断的去修改源代码,为了弥补这个缺点,我们可以使用一个set方法,进行动 阅读全文
摘要:
1.maven pom.xml配置 <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> <dependency> <groupId>org.springframework</groupId> <a 阅读全文