Spring框架
文章平均质量分 96
spring学习
SOL_H
这个作者很懒,什么都没留下…
展开
-
SpringBoot学习
一、springBoot入门 springBoot Hello world 1、创建一个maven工程 <parent> <artifactId>spring-boot-starter-parent</artifactId> <groupId>org.springframework.boot</groupId> <version>2.5.2</version>原创 2021-07-10 15:15:30 · 86 阅读 · 0 评论 -
Spring学习
一、工厂设计模式 1、什么是工厂设计模式 1.就是通过工厂类来创建对象 2.好处:解耦 2、简单工厂 package com.learn.javase.reflect; import java.io.IOException; import java.io.InputStream; import java.util.Properties; public class MyBeanFactory { private static Properties properties = new Propert原创 2021-07-10 14:45:30 · 108 阅读 · 0 评论