From 08b46c819b5558d3c6070f7cd6bc3381b9eed239 Mon Sep 17 00:00:00 2001 From: StarBlues Date: Sun, 20 Mar 2022 14:31:51 +0800 Subject: [PATCH] update readme --- README.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 0cc43a1..9761566 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,14 @@ - A new `3.0.0' version is available, a framework for dynamically extending the system. +[中文](https://gitee.com/starblues/springboot-plugin-framework-parent) + ### Introduce -The framework can be developed in the `SpringBoot` project plugin, plugin can be used in exactly the same way as `SpringBoot`. Using this framework you can achieve the following requirements: +The framework can be developed in the `spring-boot` project plugin, plugin can be used in exactly the same way as `spring-boot`. Using this framework you can achieve the following requirements: - In the plugin, you can develop as a mini `spring-boot` project, which is easy to use. - The extension of various function points in the system in plugin, for flexible system expansion, no longer need to use branches to deliver different requirements of the project. -- Various frameworks and their various `spring-boot-XXX-starter` can be integrated in plugin. +- Various frameworks and their various `spring-boot-xxx-starter` can be integrated in plugin. - Independent dependencies can now be defined in plugin, not in the main program. - Can perfectly solve the plugin package and plugin package, plugin package and the main program because of the same framework of different versions of the conflict problem. Individual plugin can define different versions of the framework for the same dependency. - Without the need to restart the main program, you can freely realize the dynamic installation and deployment of the plugin package, to dynamically expand the function of the system. @@ -16,24 +18,20 @@ The framework can be developed in the `SpringBoot` project plugin, plugin can be ### Features 1. It simplifies the integration steps of the framework and makes it easier to get started. 2. Plugin development is closer to `spring-boot` native development. -3. Package plugin with `Maven` to support independent package compilation of plugins. Current support: +3. Package plugin with `maven` to support independent package compilation of plugins. Current support: - Dev packaging: Package the plugin as a development environment plugin (packaged only once). - Prod packaging: Package plug-ins into a `jar`, `zip`, `folder`, etc. 4. Plugin support two modes of operation: - Plugin mode: As a plugin, it is bootloaded by the main program. -- Autonomous boot mode: Starts as a separate `SpringBoot` project。 +- Autonomous boot mode: Starts as a separate `spring-boot` project。 5. Self-developed class loader, support plugin definition of a variety of dependent 'jar' packages. -6. Various frameworks and their various `spring-boot-XXX-starter` can be integrated in plugins, such as integration: `mybatis`、`mybatis-plus`、`spring-jpa` etc. +6. Various frameworks and their various `spring-boot-xxx-starter` can be integrated in plugins, such as integration: `mybatis`、`mybatis-plus`、`spring-jpa` etc. ### Environment 1. jdk1.8+d 2. apache maven 3.6+ 3. spring-boot 2.0.0+ -### Maven repository - -[https://mvnrepository.com/artifact/com.gitee.starblues/springboot-plugin-framework](https://mvnrepository.com/artifact/com.gitee.starblues/springboot-plugin-framework) - ### Doc - [https://www.yuque.com/starblues/spring-brick-3.0.0](https://www.yuque.com/starblues/spring-brick-3.0.0) -- Gitee