Spring Boot 6. Web MVC REST 应用 Web MVC REST 应用PDF 版本:第六节 Web MVC REST 应用.pdf 2022-04-25 yuque #spring boot
Spring Boot 3. 理解 SpringApplication 理解 SpringApplicationPDF 版本:第三节 理解 SpringApplication.pdf SpringApplication 定义 : Spring 应用引导类 , 提供便利的自定义行为方法 场景 : 嵌入式 Web 应用和非 Web 应用 运行 : SpringApplication#run(String...) SpringApplication 基本使用SpringA 2022-04-25 yuque #spring boot
Spring Boot 2 单元测试多线程问题 junit 单元测试不支持多线程 原因部分 Junit4 TestRunner 源码 12345678910111213141516public static final int SUCCESS_EXIT=0;public static final int FAILURE_EXIT=1;public static final int EXCEPTION_EXIT=2;public static v 2022-04-25 yuque #spring boot #junit
Spring Boot 2 单元测试教程 Spring Boot 2 单元测试示例依赖 12345<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scop 2022-04-25 yuque #spring boot #junit
Spring Boot 2. 走向自动装配 走向自动装配PDF 版本:第二节 走向自动装配.pdf Spring Framework 手动装配Spring 模式注解装配定义: 一种用于声明在应用中扮演”组件”角色的注解 举例: @Component , @Service , @Configuration 等 装配: context:component-scan 或 @ComponentScan 模式注解(Stereotype Ann 2022-04-25 yuque #spring boot
Spring Boot 1. 总览-核心特性 总览-核心特性PDF 版本:第一节 系列总览-核心特性.pdf Spring Boot 三大特性组件 自动 装配: Web MVC , Web Flux ,JDBC 等 激活: @EnableAutoConfiguration 配置: /METE-INF/spring.factories (元信息目录,工厂机制,key value 形式) 实现: XXXAutoConfiguration 嵌入式 2022-04-25 yuque #spring boot
Spring Spring FrameworkXmind 版本:Spring.xmind 控制反转(IoC)容器Inversion of ControlSpring 容器是 Spring 框架的核心。容器将创建对象,把它们连接在一起,配置它们,并管理他们的整个生命周期从创建到销毁。Spring 容器使用依赖注入(DI)来管理组成一个应用程序的组件。这些对象被称为 Spring Beans,我们将在下一章中进行讨 2022-04-25 yuque #spring boot
React 入门 React 相关教程 react 学习过程中,相关的文档。https://react.docschina.org/docs/getting-started.html https://docs.npmjs.com/getting-started https://yarn.bootcss.com/docs/getting-started/ https://ant.design/docs/react/p 2022-04-25 yuque #react