Spring

获取 IoC 容器的原始对象

获取 Spring Boot 注入的对象的原始 class: java 1 2 3 4 import org.springframework.aop.support.AopUtils; // 使用 Spring 自带工具实现 AopUtil.getTargetClass()

 ·  · 

Spring Boot 依赖引入的方式

引入 Spring Boot 依赖的两种方式: Parent xml 1 2 3 4 5 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.1.2</version> </parent> 依赖管理 xml 1 2 3 4 5 6 7 8 9 10 11 <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>3.1.2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>

 ·  · 

Spring Boot 自定义数据源配置

Spring Boot 集成 Mybatis or MyBatis-Plus 自定义数据源

 ·  · 

Spring Boot 打包后获取 Classpath 目录下文件

Spring Boot 打包后获取 Classpath 目录下文件

 ·  · 

IDEA 中的 Java 运行参数说明

IDEA 中的 Java 运行参数说明

 ·  ·