Spring依赖注入DI、Bean作用域、Bean的自动装配 依赖注入(Dependency Injection,DI) 依赖 : 指Bean对象的创建依赖于容器,Bean对象的依赖资源 注入 : 指Bean对象所依赖的资源,由容器来设置和装配 构造器注入 **构造器注入:**https://www ...
分类:
编程语言 时间:
2021-06-16 17:52:34
阅读次数:
0
//程序的主入口,不能删也不能改 @SpringBootApplication//标注是一个springBoot的应用 public class DemoApplication { //将springBoot应用启动 public static void main(String[] args) { ...
分类:
其他好文 时间:
2021-06-16 17:46:34
阅读次数:
0
一,被调用方 web-test spring: application: name: web-test 二,web-test准备接口 package com.tenyears.webTest.controller; import org.springframework.beans.factory.a ...
分类:
编程语言 时间:
2021-06-16 17:34:00
阅读次数:
0
前言因为要用到Spring的初始化加载bean,比如Spring上下文的获取类应该优先加载,监听什么的类应该在启动后加载,所以考虑先后顺序,所以研究一下ApplicationRunner、InitializingBean、@PostConstruct的执行先后顺序问题 一、ApplicationRu ...
分类:
移动开发 时间:
2021-06-15 18:53:28
阅读次数:
0
###一、spring-cloud-alibaba-gateway #####1、pom.xml <!-- gateway 路由网关依赖 webflux--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId> ...
分类:
编程语言 时间:
2021-06-15 18:39:05
阅读次数:
0
用到的软件:Winhex软件 步骤: 1、编译出boot.hex、app.hex 2、复制一份boot.hex,并改名为boot_app.hex 3、把Boot的最后一行去掉,再把App的所有文件复制到Boot后即可 具体如下: :020000040800F2 //boot起始地址 :1000000 ...
分类:
移动开发 时间:
2021-06-15 18:34:20
阅读次数:
0
配置文件 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins ...
分类:
其他好文 时间:
2021-06-15 18:33:43
阅读次数:
0
1.依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>${mybatis-plus.verson}</version></depend ...
分类:
编程语言 时间:
2021-06-15 18:29:31
阅读次数:
0
/** * @author wuyimin * @create 2021-05-06-8:56 * @description AOP面向方面/切面编程:在不通过修改源代码的方式添加新的功能 * 权限判断模块配置到副本模块中 * AOP底层原理:动态代理 * 两种代理情况 * 第一种有接口:使用jdk ...
分类:
其他好文 时间:
2021-06-15 18:28:51
阅读次数:
0
1.适用范围和规范不同 filter是servlet规范规定的,只能用在web程序中. 拦截器即可以用在web程序中, 也可以用于application, swing程序中, 是Spring容器内的, 是Spring框架支持的 2.触发时机不同 顺序: Filter-->Servlet-->Inte ...
分类:
其他好文 时间:
2021-06-15 18:19:56
阅读次数:
0