CN114040009B - Method for realizing micro-service management platform gateway, storage medium and electronic equipment - Google Patents

Method for realizing micro-service management platform gateway, storage medium and electronic equipment Download PDF

Info

Publication number
CN114040009B
CN114040009B CN202111211242.1A CN202111211242A CN114040009B CN 114040009 B CN114040009 B CN 114040009B CN 202111211242 A CN202111211242 A CN 202111211242A CN 114040009 B CN114040009 B CN 114040009B
Authority
CN
China
Prior art keywords
gateway
configuration
micro
management platform
data
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN202111211242.1A
Other languages
Chinese (zh)
Other versions
CN114040009A (en
Inventor
李明强
孙思清
肖传楠
乔鸿宇
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Inspur Cloud Information Technology Co Ltd
Original Assignee
Inspur Cloud Information Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Inspur Cloud Information Technology Co Ltd filed Critical Inspur Cloud Information Technology Co Ltd
Priority to CN202111211242.1A priority Critical patent/CN114040009B/en
Publication of CN114040009A publication Critical patent/CN114040009A/en
Application granted granted Critical
Publication of CN114040009B publication Critical patent/CN114040009B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/22Microcontrol or microprogram arrangements
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L41/00Arrangements for maintenance, administration or management of data switching networks, e.g. of packet switching networks
    • H04L41/08Configuration management of networks or network elements
    • H04L41/0803Configuration setting
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)

Abstract

The invention discloses a realization method of a micro-service management platform gateway, a storage medium and electronic equipment, belonging to the technical field of gateways, and aiming at solving the technical problem of how to provide a gateway which has complete functions and is easy to build for users under a micro-service platform, the invention adopts the following technical scheme: the method comprises the following steps: the gateway is deployed on the micro-service side, and functions of dynamic routing, flow control degradation and plug-in verification are added by carrying out secondary development on the open source gateway; adopting an observer mode in a design mode, selecting a pushing mode of the observer mode, and actively pushing one dynamic data source to all listeners of the data source to realize dynamic management of gateway data; the data monitoring configuration is uniformly managed through the configuration file: supporting system configuration and custom configuration; encapsulating gateway functions provided by the micro service management platform into a gateway SDK by adopting Spring Factories expansion mechanism of Spring Boot; metadata is employed to identify the gateway.

Description

Method for realizing micro-service management platform gateway, storage medium and electronic equipment
Technical Field
The invention relates to the technical field of gateways, in particular to a method for realizing a micro-service management platform gateway, a storage medium and electronic equipment.
Background
Micro-services are a variant of the software development technology-Service Oriented Architecture (SOA) architecture style, which advocates the division of a single application into a small set of services, which are coordinated and matched with each other, providing the final value for the user. Each service runs in its independent process, and services communicate with each other using a lightweight communication mechanism (typically an HTTP-based RESTful API). Each service is built around a specific business and can be deployed independently to a production environment, class production environment, etc. In addition, a unified and centralized service management mechanism should be avoided as much as possible, and a specific service should be constructed by selecting a proper language and tool according to the context. The microservice (or microservice architecture) is a cloud native architecture approach in which a single application consists of many smaller components or services that are loosely coupled and independently deployable.
The micro service gateway is generally referred to as an API gateway, which is a server and is the only entry to the system. From the perspective of object-oriented design, it resembles an appearance model. The API gateway encapsulates the system internal architecture, providing a custom API for each client. It may also have other responsibilities such as authentication, monitoring, load balancing, caching, request fragmentation and management, static response handling. The key point of the API gateway mode is that all clients and consumers access micro services through a unified gateway, and all non-business functions are processed at the gateway layer. Typically, the gateway is also an access API that provides REST/HTTP. The service end registers and manages the service through the API-GW.
Most open source gateway frameworks provide gateway basic functions such as route forwarding, authentication and flow control degradation, but do not provide functions more suitable for production environments, such as dynamic routing functions, and cannot meet the service requirements of dynamic refreshing and real-time changing of gateway data in the actual production process. Therefore, how to obtain a gateway with powerful functions and easy expansion for the user of the micro service management platform is a technical problem to be solved.
Disclosure of Invention
The technical task of the invention is to provide a realization method of a micro-service management platform gateway, a storage medium and electronic equipment, so as to solve the problem of how to enable a user of the micro-service management platform to obtain a gateway which has strong functions and is easy to expand.
The technical task of the invention is realized in the following way, a method for realizing the micro-service management platform gateway, which comprises the following steps:
The gateway is deployed on the micro-service side, and the functions of dynamic routing, flow control degradation and plug-in verification are added by carrying out secondary development on the existing open-source gateway, so that the functions of the gateway are enriched;
Adopting an observer mode in a design mode, selecting a pushing mode of the observer mode, and actively pushing one dynamic data source to all listeners of the data source to realize dynamic management of gateway data;
The data monitoring configuration is uniformly managed through the configuration file: supporting system configuration and custom configuration;
encapsulating gateway functions provided by the micro service management platform into a gateway SDK by adopting Spring Factories expansion mechanism of Spring Boot;
Metadata is employed to identify the gateway: the registry and the configuration center distinguish the micro-service gateway from the normal micro-service through metadata.
Preferably, when a user deploys a gateway, a gateway SDK is introduced, and a gateway management page, a gateway management service, a registration center and a configuration center provided by the micro service management platform can be used.
More preferably, the gateway SDK is compatible with an open source gateway, secondary development is carried out on the basis of the open source gateway, and after a user introduces the gateway SDK, custom expansion is carried out on the basis of the open source gateway and the gateway SDK, so that personalized service requirements of each user are met.
Preferably, the dynamic management means that a dynamic update data updating mode is selected, so that the gateway updates the gateway data during running, and the defects of complicated configuration and frequent restarting which are needed during the update of the data of the open source gateway are avoided;
The configuration center provides a system name space as a dynamic data source to store gateway data, and when the dynamic data source is updated, the configuration center immediately pushes the data to all gateways monitoring the dynamic data source, so that the real-time update of the data during the operation of the gateways is ensured, and the consistency of all gateway data during the deployment of the gateways by the clusters is ensured.
More preferably, the registry and the configuration center are deployed in a shared-nothing cluster mode, each user has its own shared registry and configuration center, the user registers the gateway and the microservice to the registry, and uses the configuration center as a dynamic data source to dynamically update the gateway data; in order to realize that different gateways do not influence each other between the registry and the configuration center, a namespace is used for isolating the gateways;
the namespaces are used for isolating the gateways, and before the gateways are deployed, a user needs to build a namespace between the registry and the configuration center and deploy the gateways under the namespaces.
More preferably, in the gateway SDK, the configuration of monitoring dynamic data sources is managed in a centralized way, and data isolation of different gateways under the system namespaces is carried out according to the IDs of the namespaces where the gateways are located as packets.
More preferably, under the system space of the configuration center, dataId for storing route information is gw-route;
a gateway is arranged under the name space with ID develop, and automatically monitors routing information of dataId serving as gw-route and develop serving as grouping under the system space of a configuration center through system configuration;
Another gateway is arranged under the naming space with the ID of public, and can automatically monitor the route information with the gW-route of dataId under the system space of the configuration center and the route information with the packet of public through system configuration, so that the mutual isolation of the two gateway route information is realized;
The user can dynamically update the route data by only introducing the gateway SDK and configuring the system, and realize the isolation with the gateway under other namespaces.
Preferably, the user self-defines data monitoring configuration based on system configuration, and the relevant gateway data can be dynamically updated through the configuration by adding the configuration under the corresponding name space of the configuration center which is exclusive to the user and then adding monitoring to the configuration in the configuration file of the gateway.
An electronic device, comprising: a memory and at least one processor;
wherein the memory stores computer-executable instructions;
the at least one processor executes the computer-executable instructions stored by the memory to cause the at least one processor to perform a method of implementing a micro service management platform gateway as described above.
A computer readable storage medium having stored therein computer executable instructions that when executed by a processor perform a method for implementing a micro service management platform gateway as described above.
The realization method of the micro service management platform gateway, the storage medium and the electronic equipment have the following advantages:
The invention improves the simplicity and flexibility of the micro-service management platform when the user builds the gateway, improves the efficiency of developing, debugging and operating the gateway of the micro-service management platform user, and provides reference for the realization of the gateway under the micro-service management platform;
secondly, the invention provides a gateway with rich functions, simplicity, easiness in use, convenience in expansion and flexibility in deployment on the micro-service management platform;
The gateway and other micro services are deployed together on the micro service side instead of the management side, so that network consumption between the micro service and the gateway is reduced, the gateway with stronger service attribute can be deployed and managed by a user, and the user can flexibly select the deployment mode of the gateway according to own requirements, such as single-machine deployment and cluster deployment;
The gateway is deployed at the micro-service side, so that a user deploys and manages the micro-service gateway, the deployment of the gateway is more flexible and is more close to the micro-service, and the network consumption between the gateway and other micro-services is reduced;
The design paradigm of the observer mode adopted by the invention can enable the gateway to dynamically update the gateway data during operation, enable the gateway to achieve real-time update of the data during operation, prevent frequent restarting of the gateway, meet the business requirements of dynamic refreshing and real-time changing of users, and improve the efficiency of debugging and operation and maintenance of the gateway;
the idea of SDK encapsulation used by the invention can reduce the development difficulty of the micro service gateway and greatly improve the reuse rate, portability and readability of codes;
And seventhly, the extended functions are encapsulated through Spring Factories, so that a user of the micro-service management platform can inherit the encapsulated functions only by introducing a software development package, and the difficulty of developing the micro-service gateway for the user is reduced.
Drawings
The invention is further described below with reference to the accompanying drawings.
Fig. 1 is a schematic diagram of an implementation method of a micro service management platform gateway.
Detailed Description
The implementation method, the storage medium and the electronic device of the micro service management platform gateway of the present invention are described in detail below with reference to the accompanying drawings and specific embodiments of the specification.
Example 1:
as shown in fig. 1, the implementation method of the micro service management platform gateway of the present invention specifically comprises the following steps:
s1, deploying a gateway on a micro-service side, and adding functions of dynamic routing, flow control degradation and plug-in verification by performing secondary development on the existing open-source gateway so as to enrich the functions of the gateway;
S2, adopting an observer mode in a design mode, selecting a pushing mode of the observer mode, and actively pushing a dynamic data source to all listeners of the data source to realize dynamic management of gateway data;
The configuration center provides a system name space as a dynamic data source to store gateway data, and when the dynamic data source is updated, the configuration center immediately pushes the data to all gateways monitoring the dynamic data source, so that the real-time updating of the data during the operation of the gateways is ensured, and the consistency of all gateway data during the deployment of the gateways by the clusters is ensured;
s3, uniformly managing the data monitoring configuration through the configuration file: supporting system configuration and custom configuration;
S4, packaging gateway functions provided by the micro service management platform into a gateway SDK by adopting Spring Factories expansion mechanism of Spring Boot;
S5, adopting metadata to identify the gateway: the registry and the configuration center distinguish the micro-service gateway from the normal micro-service through metadata.
When the user deploys the gateway in the embodiment, the gateway SDK is introduced, so that a gateway management page, a gateway management service, a registration center and a configuration center provided by the micro service management platform can be used.
The gateway SDK in the embodiment is compatible with an open source gateway, secondary development is carried out on the basis of the open source gateway, after a user introduces the gateway SDK, custom expansion is carried out on the basis of the open source gateway and the gateway SDK, and personalized service requirements of each user are met.
The dynamic management in this embodiment refers to selecting a dynamic update data mode, so that the gateway updates the gateway data during running, and avoids the defects of complicated configuration and frequent restarting when the gateway is opened to update the data;
The registration center and the configuration center in the embodiment are deployed in a single-shared cluster mode, each user has a registration center and a configuration center which are independent of the user, the user registers the gateway and the micro service to the registration center, and the configuration center is used as a dynamic data source to dynamically update the gateway data; in order to realize that different gateways do not influence each other between the registry and the configuration center, a namespace is used for isolating the gateways;
the namespaces are used for isolating the gateways, and before the gateways are deployed, a user needs to build a namespace between the registry and the configuration center and deploy the gateways under the namespaces.
In the gateway SDK in this embodiment, the configuration of the listening dynamic data source is centrally managed, and according to the ID of the namespace where the gateway is located, data isolation of different gateways under the system namespace is performed as a packet.
Under the system space of the configuration center in the embodiment, dataId for storing route information is gw-route;
a gateway is arranged under the name space with ID develop, and automatically monitors routing information of dataId serving as gw-route and develop serving as grouping under the system space of a configuration center through system configuration;
Another gateway is arranged under the naming space with the ID of public, and can automatically monitor the route information with the gW-route of dataId under the system space of the configuration center and the route information with the packet of public through system configuration, so that the mutual isolation of the two gateway route information is realized;
The user can dynamically update the route data by only introducing the gateway SDK and configuring the system, and realize the isolation with the gateway under other namespaces.
In this embodiment, as an preference, a user self-defines data monitoring configuration based on system configuration, and only needs to add the configuration under the corresponding namespace of the configuration center which is exclusive to the user, and then adds monitoring to the configuration in the configuration file of the gateway, so that relevant gateway data can be dynamically updated through the configuration.
Example 2:
the embodiment of the invention also provides electronic equipment, which comprises: at least one processor of the memory;
Wherein the memory stores computer-executable instructions;
And executing the computer-executed instructions stored in the memory by a processor, so that the processor executes the method for implementing the micro service management platform gateway according to any one of the invention.
Example 3:
The embodiment of the invention also provides a computer readable storage medium, wherein a plurality of instructions are stored, and the instructions are loaded by a processor, so that the processor executes the method for realizing the micro service management platform gateway in any embodiment of the invention. Specifically, a system or apparatus provided with a storage medium on which a software program code realizing the functions of any of the above embodiments is stored, and a computer (or CPU or MPU) of the system or apparatus may be caused to read out and execute the program code stored in the storage medium.
In this case, the program code itself read from the storage medium may realize the functions of any of the above-described embodiments, and thus the program code and the storage medium storing the program code form part of the present invention.
Examples of storage media for providing program code include floppy disks, hard disks, magneto-optical disks, optical disks (e.g., CD-ROMs, CD-R, CD-RWs, DVD-ROMs, DVD-RAMs, DVD-RWs, DVD+RWs), magnetic tapes, nonvolatile memory cards, and ROMs. Alternatively, the program code may be downloaded from a server computer by a communication network.
Further, it should be apparent that the functions of any of the above-described embodiments may be implemented not only by executing the program code read out by the computer, but also by causing an operating system or the like operating on the computer to perform part or all of the actual operations based on the instructions of the program code.
Further, it is understood that the program code read out by the storage medium is written into a memory provided in an expansion board inserted into a computer or into a memory provided in an expansion unit connected to the computer, and then a CPU or the like mounted on the expansion board or the expansion unit is caused to perform part and all of actual operations based on instructions of the program code, thereby realizing the functions of any of the above embodiments.
Finally, it should be noted that: the above embodiments are only for illustrating the technical solution of the present invention, and not for limiting the same; although the invention has been described in detail with reference to the foregoing embodiments, it will be understood by those of ordinary skill in the art that: the technical scheme described in the foregoing embodiments can be modified or some or all of the technical features thereof can be replaced by equivalents; such modifications and substitutions do not depart from the spirit of the invention.

Claims (10)

1. The method for realizing the micro-service management platform gateway is characterized by comprising the following steps:
The gateway is deployed on the micro-service side, and functions of dynamic routing, flow control degradation and plug-in verification are added by carrying out secondary development on the open source gateway;
Adopting an observer mode in a design mode, selecting a pushing mode of the observer mode, and actively pushing one dynamic data source to all listeners of the data source to realize dynamic management of gateway data;
The data monitoring configuration is uniformly managed through the configuration file: supporting system configuration and custom configuration;
encapsulating gateway functions provided by the micro service management platform into a gateway SDK by adopting Spring Factories expansion mechanism of Spring Boot;
Metadata is employed to identify the gateway: the registry and the configuration center distinguish the micro-service gateway from the normal micro-service through metadata.
2. The method for implementing a micro-service management platform gateway according to claim 1, wherein when a user deploys the gateway, introducing the gateway SDK, a gateway management page, a gateway management service, a registration center and a configuration center provided by the micro-service management platform can be used.
3. The method for implementing the micro service management platform gateway according to claim 1 or 2, wherein the gateway SDK is compatible with an open source gateway, secondary development is performed on the basis of the open source gateway, and after the user is supported to introduce the gateway SDK, custom expansion is performed on the basis of the open source gateway and the gateway SDK, so as to meet the personalized service requirement of each user.
4. The method for implementing a micro service management platform gateway according to claim 1, wherein the dynamic management means selecting a dynamically updated update data mode to enable the gateway to update gateway data during running;
The configuration center provides a system name space as a dynamic data source to store gateway data, and when the dynamic data source is updated, the configuration center immediately pushes the data to all gateways monitoring the dynamic data source.
5. The method for implementing the micro service management platform gateway according to claim 2, wherein the registry and the configuration center are deployed in a single-shared cluster mode, each user has a registration center and a configuration center which are independent of the user, the user registers the gateway and the micro service to the registration center, and uses the configuration center as a dynamic data source to dynamically update the gateway data; using namespaces for isolation between gateways;
the namespaces are used for isolating the gateways, and before the gateways are deployed, a user needs to build a namespace between the registry and the configuration center and deploy the gateways under the namespaces.
6. The method for implementing a micro service management platform gateway according to claim 3, wherein in the gateway SDK, configuration of monitoring dynamic data sources is centrally managed, and data isolation of different gateways under a system namespace is performed according to an ID of the namespace where the gateway is located as a packet.
7. The method for implementing a micro service management platform gateway according to claim 5, wherein dataId storing route information is gw-route in a system space of a configuration center;
a gateway is arranged under the name space with ID develop, and automatically monitors routing information of dataId serving as gw-route and develop serving as grouping under the system space of a configuration center through system configuration;
Another gateway is arranged under the naming space with the ID of public, and can automatically monitor the route information with the gW-route of dataId under the system space of the configuration center and the route information with the packet of public through system configuration, so that the mutual isolation of the two gateway route information is realized;
The user can dynamically update the route data by only introducing the gateway SDK and configuring the system, and realize the isolation with the gateway under other namespaces.
8. The method for implementing the micro service management platform gateway according to claim 1, wherein the user self-defines data monitoring configuration based on system configuration, and the relevant gateway data can be dynamically updated through the configuration by adding the configuration under the corresponding naming space of the configuration center which is exclusive to the user and then adding monitoring to the configuration in the configuration file of the gateway.
9. An electronic device, comprising: a memory and at least one processor;
wherein the memory stores computer-executable instructions;
the at least one processor executing computer-executable instructions stored in the memory causes the at least one processor to perform the method of implementing a micro service management platform gateway according to any one of claims 1 to 8.
10. A computer readable storage medium having stored therein computer executable instructions which, when executed by a processor, implement a method of implementing a micro service management platform gateway according to any one of claims 1 to 8.
CN202111211242.1A 2021-10-18 2021-10-18 Method for realizing micro-service management platform gateway, storage medium and electronic equipment Active CN114040009B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111211242.1A CN114040009B (en) 2021-10-18 2021-10-18 Method for realizing micro-service management platform gateway, storage medium and electronic equipment

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111211242.1A CN114040009B (en) 2021-10-18 2021-10-18 Method for realizing micro-service management platform gateway, storage medium and electronic equipment

Publications (2)

Publication Number Publication Date
CN114040009A CN114040009A (en) 2022-02-11
CN114040009B true CN114040009B (en) 2024-04-30

Family

ID=80135440

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111211242.1A Active CN114040009B (en) 2021-10-18 2021-10-18 Method for realizing micro-service management platform gateway, storage medium and electronic equipment

Country Status (1)

Country Link
CN (1) CN114040009B (en)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114650318B (en) * 2022-02-24 2024-04-19 阿里巴巴(中国)有限公司 Switch pushing method
CN116931976A (en) * 2022-04-02 2023-10-24 中兴通讯股份有限公司 Micro service management method, electronic device and computer readable storage medium
CN114978936A (en) * 2022-05-24 2022-08-30 身边云(北京)信息服务有限公司 Method, system and storage medium for upgrading shared service platform
CN115442913A (en) * 2022-08-15 2022-12-06 浙江猫精人工智能科技有限公司 Protocol access method, communication method, development device, gateway and storage medium

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108011768A (en) * 2017-12-26 2018-05-08 杭州电子科技大学 A kind of aop intercept types HBase data store micro services framework construction method
CN109889571A (en) * 2019-01-09 2019-06-14 深圳市雁联计算***有限公司 A kind of development platform system and development approach
CN110417779A (en) * 2019-07-30 2019-11-05 上海派拉软件股份有限公司 A kind of authentication accessing method based on service
CN110691129A (en) * 2019-09-26 2020-01-14 杭州网易云音乐科技有限公司 Request processing method and device, storage medium and electronic equipment
CN112887130A (en) * 2021-01-18 2021-06-01 昆山华东信息科技有限公司 Micro service management method and device

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10826916B2 (en) * 2018-09-17 2020-11-03 ShieldX Networks, Inc. Agent-less network traffic inspection using an overlay network

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108011768A (en) * 2017-12-26 2018-05-08 杭州电子科技大学 A kind of aop intercept types HBase data store micro services framework construction method
CN109889571A (en) * 2019-01-09 2019-06-14 深圳市雁联计算***有限公司 A kind of development platform system and development approach
CN110417779A (en) * 2019-07-30 2019-11-05 上海派拉软件股份有限公司 A kind of authentication accessing method based on service
CN110691129A (en) * 2019-09-26 2020-01-14 杭州网易云音乐科技有限公司 Request processing method and device, storage medium and electronic equipment
CN112887130A (en) * 2021-01-18 2021-06-01 昆山华东信息科技有限公司 Micro service management method and device

Also Published As

Publication number Publication date
CN114040009A (en) 2022-02-11

Similar Documents

Publication Publication Date Title
CN114040009B (en) Method for realizing micro-service management platform gateway, storage medium and electronic equipment
EP2625624B1 (en) Distribution of content and behavior to disparate platforms
CN109818902B (en) Automatic service deployment method, service scheduling management module and EPG platform
US8954952B2 (en) Portable business process deployment model across different application servers
CN109725909B (en) Code file packaging deployment method, continuous integrated server and system
US10223083B1 (en) System and method for pervasive software platform-based model driven architecture transaction aware application generator
CN104158886B (en) Flow-type performing method for applications
US9632764B2 (en) Defining configurable characteristics of a product and associating configuration with enterprise resources
US8978021B2 (en) System and method for pervasive software platform-based model driven architecture transaction aware application generator
CN110727653B (en) Multi-project load balancing method and device
US20140258234A1 (en) Synchronization of cms data to mobile device storage
US7584466B1 (en) Management tree management in a mobile handset
CN108319463A (en) A kind of application upgrade method, apparatus
CN104301338A (en) Cloud platform based automatic deploying method for application system
CN107947981B (en) Network equipment management method and device
CN104009994A (en) Method and device for achieving communication of server side and client side
US20120023064A1 (en) Parameter Value Binding for Mobile Business Objects
CN113077260A (en) Data access method and device based on block chain and electronic equipment
CN114077435A (en) Electronic deposit certificate system and method based on containerization rapid deployment
US10229093B2 (en) Method and system for implementing a common data interface to web services
JP2008090578A (en) Application performance system, computer, and application performance method for application performance system and program
CN111683005A (en) Internet of things intelligent gateway equipment and construction method thereof
CN115811481A (en) Interactive service testing method and device, computer equipment and storage medium
CN112698840B (en) Architecture system for realizing service for bank cloud platform
CN109656536A (en) A kind of method and client of pushing module modularization

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant