当前位置: 首页 > news >正文

集成框架 -- 自定义二方包 starter

自定义starter

    • 二方包 My-thread-pool-starter
      • my-thread-pool-starter 整体架构
    • 测试 MyTestAppApplication
      • 测试工程 my-test-app 结构
      • 测试项目的 pom.xml

二方包 My-thread-pool-starter

POM 文件


<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.example</groupId><artifactId>my-thread-pool-starter</artifactId><version>1.0.0</version><packaging>jar</packaging><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.5.4</version><relativePath/> <!-- lookup parent from repository --></parent><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-autoconfigure</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-configuration-processor</artifactId><optional>true</optional></dependency></dependencies><build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin></plugins></build>
</project>

my-thread-pool-starter 整体架构

│
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── com
│   │   │       └── example
│   │   │           └── threadpoolstarter
│   │   │               ├── ThreadPoolAutoConfiguration.java
│   │   │               ├── ThreadPoolProperties.java
│   │   │               └── ThreadPoolConfigurer.java
│   └── resources
│       └── META-INF
│           └── spring.factories

确保 spring.factories 文件正确配置并位于 src/main/resources/META-INF 目录下:


org.springframework.boot.autoconfigure.EnableAutoConfiguration=\com.example.threadpoolstarter.ThreadPoolAutoConfiguration

打包和安装到本地仓库

mvn clean install

测试 MyTestAppApplication

在另一个 Spring Boot 应用中使用你的自定义 Starter,在pom.xml 中添加依赖项:


<dependency><groupId>com.example</groupId><artifactId>my-thread-pool-starter</artifactId><version>1.0.0</version>
</dependency>

然后在该应用的 application.properties 或 application.yml 文件中配置你的线程池属性:

threadpool.enabled=true
threadpool.corePoolSize=10
threadpool.maxPoolSize=50
threadpool.queueCapacity=100
threadpool.threadNamePrefix=CustomThreadPool-

测试工程 my-test-app 结构

│
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── com
│   │   │       └── example
│   │   │           └── mytestapp
│   │   │               └── MyTestAppApplication.java
│   └── main
│       └── resources
│           └── application.yml

测试项目的 pom.xml


<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.example</groupId><artifactId>my-test-app</artifactId><version>1.0.0</version><packaging>jar</packaging><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.5.4</version><relativePath/> <!-- lookup parent from repository --></parent><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId></dependency><!-- 添加自定义的Starter依赖 --><dependency><groupId>com.example</groupId><artifactId>my-thread-pool-starter</artifactId><version>1.0.0</version></dependency></dependencies>
</project>

在这里插入图片描述


http://www.mrgr.cn/news/65653.html

相关文章:

  • Day 46 || 188.买卖股票的最佳时机IV 、309.最佳买卖股票时机含冷冻期 、714.买卖股票的最佳时机含手续费
  • CSS Text(文本)
  • 深度学习:正则化(Regularization)详细解释
  • 如何利用低代码开源框架实现高效开发?
  • 考研要求掌握的C语言(冒泡排序专题)
  • python在word的页脚插入页码
  • 分析自动下载电路是如何工作的以及CH340的选型
  • Autocad2018
  • LeetCode:3259. 超级饮料的最大强化能量(DP Java)
  • git原理与上传
  • Backbone网络详解
  • Docker部署Portainer CE结合内网穿透实现容器的可视化管理与远程访问
  • Python 枚举enum
  • 时间服务器
  • 【操作系统】基于环形队列的生产消费模型
  • 堆heap的讨论、习题与代码
  • 架构师考试系列(8)论文专题:信息系统安全设计
  • 探索 Intersection Observer API:提升网页性能的新途径
  • 主体Subject和客体Object-西方哲学的思维方式
  • mysql笔记-索引
  • 游游的游戏大礼包
  • windows完结---清风
  • 数据结构---自定义动态数组
  • 从零开发操作系统-为什么磁盘的扇区为 512 byte
  • PMP-人
  • 泛微开发修炼之旅--52关于ecology首页待办修改源码位置记录