原文地址:Spring与Mybatis整合的MapperScannerConfigurer处理过程源码分析 前言 本文将分析mybatis与spring整合的MapperScannerConfigurer的底层原理,之前已经分析过java中实现动态,可以使用jdk自带api和cglib第三方库生成动态代理.本文分析的mybatis版本3.2.7,mybatis-spring版本1.2.2. MapperScannerConfigurer介绍 MapperScannerConfigurer是spr…
前言 本文将分析mybatis与spring整合的MapperScannerConfigurer的底层原理,之前已经分析过java中实现动态,可以使用jdk自带api和cglib第三方库生成动态代理.本文分析的mybatis版本3.2.7,mybatis-spring版本1.2.2. MapperScannerConfigurer介绍 MapperScannerConfigurer是spring和mybatis整合的mybatis-spring jar包中提供的一个类. 想要了解该类的作用,就得…
转自:https://www.cnblogs.com/fangjian0423/p/spring-mybatis-MapperScannerConfigurer-analysis.html MapperScannerConfigurer是spring和mybatis整合的mybatis-spring jar包中提供的一个类.想要了解该类的作用,就得先了解MapperFactoryBean.MapperFactoryBean的出现为了代替手工使用SqlSessionDaoSupport或SqlSe…
spring boot 加载web容器tomcat流程源码分析 我本地的springboot版本是2.5.1,后面的分析都是基于这个版本 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.1</version> <relativePa…
前言 本文将分析mybatis与spring整合的MapperScannerConfigurer的底层原理,之前已经分析过java中实现动态,可以使用jdk自带api和cglib第三方库生成动态代理.本文分析的mybatis版本3.2.7,mybatis-spring版本1.2.2. MapperScannerConfigurer介绍 MapperScannerConfigurer是spring和mybatis整合的mybatis-spring jar包中提供的一个类. 想要了解该类的作用,就得…
第一部分:项目结构 user_info表:只有id和username两个字段 User实体类: public class User { private String username; private String password; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public Strin…
  前面两篇文章分析了super(this)和setConfigLocations(configLocations)的源代码,本文来分析下refresh的源码, Spring加载流程源码分析01[super] Spring加载流程源码分析02[setConfigLocations] 先来看下ClassPathXmlApplicationContext类的初始化过程: public ClassPathXmlApplicationContext(String[] configLocations, b…
Spring PropertyResolver 占位符解析(二)源码分析 Spring 系列目录(https://www.cnblogs.com/binarylei/p/10198698.html) Spring 3.1 提供了新的占位符解析器 PropertyResolver,默认实现为 PropertySourcesPropertyResolver.相关文章如下: Spring PropertyResolver 占位符解析(一)API 介绍 Spring PropertyResolver 占…
使用过Spring Boot,我们都知道通过java -jar可以快速启动Spring Boot项目.同时,也可以通过在执行jar -jar时传递参数来进行配置.本文带大家系统的了解一下Spring Boot命令行参数相关的功能及相关源码分析. 命令行参数使用 启动Spring Boot项目时,我们可以通过如下方式传递参数: java -jar xxx.jar --server.port=8081 默认情况下Spring Boot使用8080端口,通过上述参数将其修改为8081端口,而且通过命令…
Spring启动过程源码分析基本概念 本文是通过AnnotationConfigApplicationContext读取配置类来一步一步去了解Spring的启动过程. 在看源码之前,我们要知道某些类的作用,这样更方便后续的了解. 1.BeanDefinition BeanDefinition就是Bean的定义,它是用来描述Bean的,里面存放着关于Bean的一系列信息,比如Bean的作用域,Bean所对应的Class,是否懒加载等等,BeanDfinition与Bean的关系可以看作是类和cla…