CN111078311A - Middleware control operation method and system - Google Patents

Middleware control operation method and system Download PDF

Info

Publication number
CN111078311A
CN111078311A CN201911134873.0A CN201911134873A CN111078311A CN 111078311 A CN111078311 A CN 111078311A CN 201911134873 A CN201911134873 A CN 201911134873A CN 111078311 A CN111078311 A CN 111078311A
Authority
CN
China
Prior art keywords
middleware
file
configuration parameters
weight
loading
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.)
Pending
Application number
CN201911134873.0A
Other languages
Chinese (zh)
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.)
Reach Best Technology Co Ltd
Beijing Dajia Internet Information Technology Co Ltd
Original Assignee
Reach Best 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 Reach Best Technology Co Ltd filed Critical Reach Best Technology Co Ltd
Priority to CN201911134873.0A priority Critical patent/CN111078311A/en
Publication of CN111078311A publication Critical patent/CN111078311A/en
Pending legal-status Critical Current

Links

Images

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/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating
    • G06F9/44521Dynamic linking or loading; Link editing at or after load time, e.g. Java class loading
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/71Version control; Configuration management

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Security & Cryptography (AREA)
  • Stored Programmes (AREA)

Abstract

The present disclosure relates to a middleware control operation method, including: calling a middleware loading file by the main program, and pulling configuration parameters of a plurality of middleware in the middleware configuration file through the middleware loading file; obtaining the weight assignment of each middleware in the middleware loading file; sequencing the configuration parameters of the plurality of middleware according to the assignment of the weight of the middleware; and the main program loads and runs each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters. The middleware control operation method in the embodiment of the disclosure can facilitate later-stage program maintenance.

Description

Middleware control operation method and system
Technical Field
The disclosure relates to the technical field of computer software development, in particular to a middleware control operation method and system.
Background
Currently, in front-end software development, a node is an end point of a network connection or a connection point of two (or more) lines, the node may be a processor, a controller or a workstation, and the nodes are different according to different functions, and they may be interconnected together through a link to serve as a control point in the network. The base framework of a node includes an Express framework and an Koa framework, and both the Express framework and the Koa framework require the use of middleware to process, distribute, etc. messages. The Express framework is a simple and flexible node.js Web application framework, can provide a series of characteristics for creating various Web applications, does not perform secondary abstraction on the existing characteristics of the node.js, and only expands the functions required by the Web applications on the basis of the secondary abstraction; rich HTTP tools in the Express framework and middleware from the Connect framework can be available at will, from which a robust and friendly API (Application program interface) can be created; the Koa framework is a new web framework, and by discarding callback functions and enhancing error handling using the async function, the Koa framework does not bind any middleware, thereby facilitating programming.
However, in the front-end software development, a plurality of kinds of middleware are used, a certain sequence exists in the use of a plurality of different kinds of middleware, and the use sequence is easy to be wrong in the calling process of the plurality of middleware, and the wrong troubleshooting is not facilitated.
Disclosure of Invention
The disclosure provides a middleware control operation method and system, which are used for at least solving the problem of wrong sequence in the middleware calling process in the related technology. The technical scheme of the disclosure is as follows:
according to a first aspect of the embodiments of the present disclosure, there is provided a middleware control operation method, including:
calling a middleware loading file by the main program, and pulling configuration parameters of a plurality of middleware in the middleware configuration file through the middleware loading file;
obtaining the weight assignment of each middleware in the middleware loading file;
sequencing the configuration parameters of the plurality of middleware according to the assignment of the weight of the middleware;
and the main program loads and runs each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters.
Wherein, before the step of obtaining the weight assignment of each middleware in the middleware loading file, the method comprises the following steps: and respectively carrying out null value check on the configuration parameters of the plurality of middleware.
Wherein, the step of respectively checking the configuration parameters of the plurality of middleware for null values comprises: storing configuration parameters of the plurality of middleware in an array; performing null check on each value in the array; wherein each configuration parameter corresponds to a value.
Wherein the step of sorting the configuration parameters of the plurality of middleware according to the assignment of the weight of the middleware comprises: and sequencing the configuration parameters of the middleware in the array according to the weight assignment of the middleware.
Wherein, after the step of checking each value in the array for a null value, the method comprises: and when the value in the array is empty, throwing abnormal error information.
According to a second aspect of the embodiments of the present disclosure, there is provided a middleware control operation system including:
the main program calling module is configured to execute calling of a middleware loading file and pull configuration parameters of a plurality of middleware in the middleware configuration file through the middleware loading file;
the weight acquisition module is configured to execute assignment for acquiring the weight of each middleware in the middleware loading file;
the sorting module is configured to sort the configuration parameters of the plurality of middleware according to the assignment size of the weight of the middleware;
and the main program loading module is configured to load and run each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters.
Wherein, middleware control operation system still includes: and the null value checking module is configured to perform null value checking on the configuration parameters of the plurality of middleware respectively.
Wherein, the null value check module comprises: a storage unit configured to perform storing the configuration parameters of the plurality of middleware in an array; a check unit configured to perform a null check on each value in the array; wherein each configuration parameter corresponds to a value.
The sorting module is further configured to perform sorting of the configuration parameters of the middleware in the array according to the size of the assignment of the weight of the middleware.
Wherein, the null value check module further comprises: and the abnormal error throwing unit is configured to throw abnormal error information when the values in the array are null.
According to a third aspect of the embodiments of the present disclosure, there is provided a middleware operation control system including: a main program file, a middleware loading file, a middleware configuration file and a middleware file; the main program file, the middleware loading file, the middleware configuration file and the middleware file store codes of executable instructions so as to realize the middleware operation control method.
According to a fourth aspect of embodiments of the present disclosure, there is provided a server, including: a processor; a memory for storing the processor-executable instructions; wherein the processor is configured to execute the instructions to implement the middleware control operation method as described above.
According to a fifth aspect of embodiments of the present disclosure, there is provided a storage medium, wherein instructions of the storage medium, when executed by a processor of a server, enable the server to execute the middleware control execution method as described above.
The technical scheme provided by the embodiment of the disclosure at least brings the following beneficial effects:
the configuration parameters of the middleware are stored through the middleware configuration file, the classified storage of the configuration parameters of the middleware can be realized, the subsequent program is convenient to be familiar with the middleware and search the middleware during maintenance, the running sequence of the middleware file is controlled through the assignment of the weight of the middleware, the errors of the using sequence of the middleware are convenient to check in the process of writing the program, and meanwhile, the positions of the errors are quickly searched and modified when the program has errors in the subsequent process.
It is to be understood that both the foregoing general description and the following detailed description are exemplary and explanatory only and are not restrictive of the disclosure.
Drawings
The accompanying drawings, which are incorporated in and constitute a part of this specification, illustrate embodiments consistent with the present disclosure and, together with the description, serve to explain the principles of the disclosure and are not to be construed as limiting the disclosure.
FIG. 1 is a flow chart illustrating a method for middleware control operation in accordance with an exemplary embodiment.
FIG. 2 is a flow chart illustrating a method of middleware control operation in accordance with another exemplary embodiment.
FIG. 3 is a block diagram illustrating a middleware control execution system in accordance with an exemplary embodiment.
Fig. 4 is a block diagram illustrating a middleware control operation system according to another exemplary embodiment.
FIG. 5 is a diagram illustrating an internal structure of a computer device, according to an example embodiment.
Detailed Description
In order to make the technical solutions of the present disclosure better understood by those of ordinary skill in the art, the technical solutions in the embodiments of the present disclosure will be clearly and completely described below with reference to the accompanying drawings.
It should be noted that the terms "first," "second," and the like in the description and claims of the present disclosure and in the above-described drawings are used for distinguishing between similar elements and not necessarily for describing a particular sequential or chronological order. It is to be understood that the data so used is interchangeable under appropriate circumstances such that the embodiments of the disclosure described herein are capable of operation in sequences other than those illustrated or otherwise described herein. The implementations described in the exemplary embodiments below are not intended to represent all implementations consistent with the present disclosure. Rather, they are merely examples of systems and methods consistent with certain aspects of the present disclosure, as detailed in the appended claims.
FIG. 1 is a flow chart illustrating a method for middleware control operation in accordance with an exemplary embodiment. As shown in fig. 1, the middleware operation control method includes the following steps.
In step S110, the main program calls a middleware loading file, and pulls configuration parameters of multiple middleware in the middleware configuration file through the middleware loading file.
The main program is a main program running on the node, and middleware can be called to run through the main program. The middleware is a message middleware, which is applied to a distributed environment requiring reliable data transmission, a message producer sends a message to the message middleware, the message middleware stores the message in a plurality of queues, and the message is sent to a message consumer when appropriate. Message middleware enables communication between different platforms, is often used to mask features between various platforms and protocols, enables collaboration between applications, has the advantage of providing synchronous and asynchronous connections between clients and servers, and can deliver, store, and forward messages at any time. Existing message middleware, including kafka, rocktmq, etc., utilizes efficient and reliable messaging mechanisms for platform-independent data communication.
The configuration parameters of the middleware comprise a name of the middleware, a description of the middleware, a type of the middleware and a weight of the middleware. The configuration parameters of the middleware are used for classifying and describing the middleware to be used, and programmers can easily know the related information of the middleware according to the configuration parameters in the process of programming development, so that the maintenance of subsequent codes is facilitated. In the process of acquiring the message, the node uses a plurality of middleware, such as thousands of middleware, and the functions of each middleware may be different, and if the middleware is not classified and described, the later-stage program maintenance is difficult to know the specific functions of the middleware, and is also difficult to modify when a program error occurs. The middleware may classify the message processing manner according to the middleware, for example, classify the middleware into a service class, an infrastructure class, or a request processing class. After the middleware is classified, the configuration parameters of the middleware can be conveniently searched in the middleware configuration file according to the type of the middleware in the subsequent code maintenance process.
Specifically, the configuration parameters of the middleware may be input through an external device such as a keyboard or a mouse, or may be acquired from a file for recording middleware information.
The middleware loading file and the middleware configuration file are JavaScript files added under the root directory, and configuration parameters of the middleware are kept in the middleware configuration file in advance.
In step S120, the weight assignment of each middleware in the middleware load file is obtained.
And assigning the weight of each middleware in the middleware loading file in advance, and transmitting the assignment to the weight of each middleware when the middleware loading file runs.
In step S130, the configuration parameters of the plurality of middleware are sorted according to the assignment of the weights of the middleware.
The weight of the middleware is used for representing the execution sequence of the corresponding middleware files, namely the use sequence of the middleware, the weight of the middleware can be specific numbers, the sequence of the numbers from small to large corresponds to the execution sequence of the middleware files, of course, the weight of the middleware can be letters, and the sequence of the letters corresponds to the execution sequence of the middleware. For example, if the first middleware is weighted 51, the second middleware is weighted 52, and the third middleware is weighted 50, the third middleware file is executed first, the first middleware file is executed, and then the second middleware file is executed.
In step S140, the main program loads and runs each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters.
The middleware files are files for controlling the operation of the middleware, and each middleware corresponds to one middleware file. In the process of acquiring a message, a node uses a plurality of middleware, for example, thousands of middleware, each middleware has different functions, such as protocol conversion, message storage, and the like, and the processing of the message has a sequence, so that the use sequence of the middleware exists. In the embodiment, the use sequence of the middleware is controlled by assigning the weight of the middleware to the middleware in the middleware loading file, and compared with the traditional method of controlling the use of the middleware by only calling the sequence of the middleware files, the execution sequence of the middleware can be clearly known in the later maintenance process of the middleware operation control program, and the modification is facilitated when the program has errors.
According to the middleware control operation method, the configuration parameters of the middleware are stored through the middleware configuration file, the classification storage of the configuration parameters of the middleware can be realized, the subsequent program is convenient to be familiar with the middleware and search the middleware during maintenance, the operation sequence of the middleware file is controlled through the assignment of the weight of the middleware, the error of the use sequence of the middleware is convenient to check in the process of writing the program, and meanwhile, the position of the error is quickly searched and modified when the program has the error in the subsequent process.
In one embodiment, as shown in fig. 2, the method for controlling the operation of the middleware further includes, before step 120: in step 150, null check is performed on the configuration parameters of the plurality of middleware, respectively.
And the null value check is used for checking whether the configuration parameters are null or not, running error information occurs if the configuration parameters are null, and the program continues to run if the configuration parameters exist.
In one embodiment, the step of performing null check on the configuration parameters of the plurality of pieces of middleware respectively includes: storing configuration parameters of the plurality of middleware in an array; performing null check on each value in the array; wherein each configuration parameter corresponds to a value.
In one embodiment, the step of sorting the configuration parameters of the plurality of middleware according to the assignment sizes of the weights of the middleware includes: and sequencing the configuration parameters of the middleware in the array according to the weight assignment of the middleware.
Each middleware corresponds to one group of configuration parameters, a plurality of middleware corresponds to a plurality of groups of configuration parameters, the plurality of groups of configuration parameters are stored through one array, each group of configuration parameters has a corresponding sequence in the array, and the sequence of each group of configuration parameters in the array is adjusted by adjusting the assignment of the weight of the middleware.
In one embodiment, after the step of checking each value in the array for a null value, the method further comprises: and when the value in the array is empty, throwing abnormal error information.
When null value check is carried out, each group of configuration parameters is checked, whether the values including the name of the middleware, the description of the middleware, the type of the middleware and the weight of the middleware are null or not is checked, and if the values are null, abnormal error information is thrown out.
In one embodiment, the main program may call the middleware file to run in a code multiplexing manner when the middleware file is loaded and run.
FIG. 3 is a block diagram illustrating a middleware control execution system in accordance with an exemplary embodiment. As shown in fig. 3, a middleware operation control system includes: a main program calling module 210, a weight obtaining module 220, a sorting module 230 and a main program loading module 240.
And the main program calling module 210 is configured to execute calling the middleware loading file, and pull the configuration parameters of the plurality of middleware in the middleware configuration file through the middleware loading file.
The weight obtaining module 220 is configured to perform assignment for obtaining the weight of each middleware in the middleware load file.
A sorting module 230 configured to perform sorting the configuration parameters of the plurality of middleware according to the assigned sizes of the weights of the middleware.
And the main program loading module 240 is configured to load and run each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters.
In one embodiment, as shown in fig. 4, the middleware operation control system further includes: a null check module 250 configured to perform null check on the configuration parameters of the plurality of middleware, respectively.
In one embodiment, the null check module 250 includes: a storage unit configured to perform storing the configuration parameters of the plurality of middleware in an array; a check unit configured to perform a null check on each value in the array; wherein each configuration parameter corresponds to a value.
In one embodiment, the sorting module 230 is further configured to perform sorting the configuration parameters of the middleware in the array according to the size of the assignment of the weight of the middleware.
In one embodiment, the null check module 250 further includes: and the abnormal error throwing unit is configured to throw abnormal error information when the values in the array are null.
In one embodiment, a middleware operation control system is provided, including: a main program file 200, a middleware loading file 300, a middleware configuration file 400 and a middleware file 500; the main program file 200, the middleware loading file 300, the middleware configuration file 400 and the middleware file 500 store codes of executable instructions to implement the middleware operation control method in the above embodiment.
FIG. 5 is a diagram illustrating an internal structure of a computer device, according to an example embodiment. There is provided a computer device, which may be a terminal, whose internal structural diagram may be as shown in fig. 5. The computer device includes a processor, a memory, a network interface, a display screen, and an input system connected by a system bus. Wherein the processor of the computer device is configured to provide computing and control capabilities. The memory of the computer device comprises a nonvolatile storage medium and an internal memory. The non-volatile storage medium stores an operating system and a computer program. The internal memory provides an environment for the operation of an operating system and computer programs in the non-volatile storage medium. The network interface of the computer device is used for communicating with an external terminal through a network connection. The computer program is executed by a processor to implement a middleware control operation method. The display screen of the computer equipment can be a liquid crystal display screen or an electronic ink display screen, and the input system of the computer equipment can be a touch layer covered on the display screen, a key, a track ball or a touch pad arranged on the shell of the computer equipment, an external keyboard, a touch pad or a mouse and the like.
Those skilled in the art will appreciate that the architecture shown in fig. 5 is merely a block diagram of some of the structures associated with the disclosed aspects and is not intended to limit the computing devices to which the disclosed aspects apply, as particular computing devices may include more or less components than those shown, or may combine certain components, or have a different arrangement of components.
In one embodiment, a computer device is provided, comprising a memory and a processor, the memory having a computer program stored therein, the processor implementing the following steps when executing the computer program:
calling a middleware loading file by the main program, and pulling configuration parameters of a plurality of middleware in the middleware configuration file through the middleware loading file;
obtaining the weight assignment of each middleware in the middleware loading file;
sequencing the configuration parameters of the plurality of middleware according to the assignment of the weight of the middleware;
and the main program loads and runs each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters.
In one embodiment, the processor, when executing the computer program, further performs the steps of: and setting a null value verification program for the second running file to perform null value verification on the middleware configuration file.
In one embodiment, the processor, when executing the computer program, further performs the steps of: and respectively carrying out null value check on the configuration parameters of the plurality of middleware.
In one embodiment, a computer-readable storage medium is provided, having a computer program stored thereon, which when executed by a processor, performs the steps of:
calling a middleware loading file by the main program, and pulling configuration parameters of a plurality of middleware in the middleware configuration file through the middleware loading file;
obtaining the weight assignment of each middleware in the middleware loading file;
sequencing the configuration parameters of the plurality of middleware according to the assignment of the weight of the middleware;
and the main program loads and runs each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters.
In one embodiment, the computer program when executed by the processor further performs the steps of: and respectively carrying out null value check on the configuration parameters of the plurality of middleware.
It will be understood by those skilled in the art that all or part of the processes of the methods of the embodiments described above can be implemented by hardware instructions of a computer program, which can be stored in a non-volatile computer-readable storage medium, and when executed, can include the processes of the embodiments of the methods described above. Any reference to memory, storage, database, or other medium used in the embodiments provided herein may include non-volatile and/or volatile memory, among others. Non-volatile memory can include read-only memory (ROM), Programmable ROM (PROM), Electrically Programmable ROM (EPROM), Electrically Erasable Programmable ROM (EEPROM), or flash memory. Volatile memory can include Random Access Memory (RAM) or external cache memory. By way of illustration and not limitation, RAM is available in a variety of forms such as Static RAM (SRAM), Dynamic RAM (DRAM), Synchronous DRAM (SDRAM), Double Data Rate SDRAM (DDRSDRAM), Enhanced SDRAM (ESDRAM), Synchronous Link DRAM (SLDRAM), Rambus Direct RAM (RDRAM), direct bus dynamic RAM (DRDRAM), and memory bus dynamic RAM (RDRAM).
Other embodiments of the disclosure will be apparent to those skilled in the art from consideration of the specification and practice of the disclosure disclosed herein. This disclosure is intended to cover any variations, uses, or adaptations of the disclosure following, in general, the principles of the disclosure and including such departures from the present disclosure as come within known or customary practice within the art to which the disclosure pertains. It is intended that the specification and examples be considered as exemplary only, with a true scope and spirit of the disclosure being indicated by the following claims.
It will be understood that the present disclosure is not limited to the precise arrangements described above and shown in the drawings and that various modifications and changes may be made without departing from the scope thereof. The scope of the present disclosure is limited only by the appended claims.

Claims (10)

1. A middleware operation control method, comprising:
calling a middleware loading file by the main program, and pulling configuration parameters of a plurality of middleware in the middleware configuration file through the middleware loading file;
obtaining the weight assignment of each middleware in the middleware loading file;
sequencing the configuration parameters of the plurality of middleware according to the assignment of the weight of the middleware;
and the main program loads and runs each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters.
2. The middleware operation control method according to claim 1, wherein before the step of obtaining the weight assignment of each middleware in the middleware load file, the method comprises:
and respectively carrying out null value check on the configuration parameters of the plurality of middleware.
3. The middleware operation control method according to claim 2, wherein the performing of the null check on the configuration parameters of the plurality of middleware respectively comprises:
storing configuration parameters of the plurality of middleware in an array;
performing null check on each value in the array; wherein each configuration parameter corresponds to a value.
4. The middleware operation control method according to claim 3, wherein the step of sorting the configuration parameters of the plurality of middleware according to the assignment magnitude of the weight of the middleware comprises:
and sequencing the configuration parameters of the middleware in the array according to the weight assignment of the middleware.
5. The middleware operation control method according to claim 3 further comprising, after the step of checking each value in the array for a null value:
and when the value in the array is empty, throwing abnormal error information.
6. A middleware operation control system comprising:
the main program calling module is configured to execute calling of a middleware loading file and pull configuration parameters of a plurality of middleware in the middleware configuration file through the middleware loading file;
the weight acquisition module is configured to execute assignment for acquiring the weight of each middleware in the middleware loading file;
the sorting module is configured to sort the configuration parameters of the plurality of middleware according to the assignment size of the weight of the middleware;
and the main program loading module is configured to load and run each middleware file according to the sequence of the configuration parameters and the file path of the middleware in the configuration parameters.
7. The middleware run control system of claim 6 further comprising: and the null value checking module is configured to perform null value checking on the configuration parameters of the plurality of middleware respectively.
8. A middleware operation control system comprising: a main program file, a middleware loading file, a middleware configuration file and a middleware file; the main program file, the middleware loading file, the middleware configuration file and the middleware file store codes of executable instructions so as to realize the middleware operation control method according to any one of claims 1 to 5.
9. A server, comprising:
a processor;
a memory for storing the processor-executable instructions;
wherein the processor is configured to execute the instructions to implement the middleware control operation method according to any one of claims 1 to 5.
10. A storage medium in which instructions are executed by a processor of a server to enable the server to perform the middleware control execution method according to any one of claims 1 to 5.
CN201911134873.0A 2019-11-19 2019-11-19 Middleware control operation method and system Pending CN111078311A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911134873.0A CN111078311A (en) 2019-11-19 2019-11-19 Middleware control operation method and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911134873.0A CN111078311A (en) 2019-11-19 2019-11-19 Middleware control operation method and system

Publications (1)

Publication Number Publication Date
CN111078311A true CN111078311A (en) 2020-04-28

Family

ID=70311182

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911134873.0A Pending CN111078311A (en) 2019-11-19 2019-11-19 Middleware control operation method and system

Country Status (1)

Country Link
CN (1) CN111078311A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN117118905A (en) * 2023-10-24 2023-11-24 北京搜狐新动力信息技术有限公司 Route registration and route calling method and device

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7003482B1 (en) * 1999-12-10 2006-02-21 Computer Sciences Corporation Middleware for business transactions
CN105653329A (en) * 2015-12-30 2016-06-08 国网信息通信产业集团有限公司 Application management method, apparatus and system
US20160337465A1 (en) * 2015-05-15 2016-11-17 Cisco Technology, Inc. Multi-datacenter message queue
CN108270857A (en) * 2018-01-15 2018-07-10 郑州云海信息技术有限公司 A kind of cloud computing operating system load-balancing method and system

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7003482B1 (en) * 1999-12-10 2006-02-21 Computer Sciences Corporation Middleware for business transactions
US20160337465A1 (en) * 2015-05-15 2016-11-17 Cisco Technology, Inc. Multi-datacenter message queue
CN105653329A (en) * 2015-12-30 2016-06-08 国网信息通信产业集团有限公司 Application management method, apparatus and system
CN108270857A (en) * 2018-01-15 2018-07-10 郑州云海信息技术有限公司 A kind of cloud computing operating system load-balancing method and system

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN117118905A (en) * 2023-10-24 2023-11-24 北京搜狐新动力信息技术有限公司 Route registration and route calling method and device
CN117118905B (en) * 2023-10-24 2024-01-09 北京搜狐新动力信息技术有限公司 Route registration and route calling method and device

Similar Documents

Publication Publication Date Title
CN108256118B (en) Data processing method, device, system, computing equipment and storage medium
CN107241315B (en) Access method and device of bank gateway interface and computer readable storage medium
CN110297640B (en) Model deployment method and device, storage medium and electronic equipment
CN104978529A (en) Exception handling method, exception handling system and exception handling server for webpage front end
CN112395140B (en) A decentralized task scheduling method apparatus, device and medium
CN110851159B (en) Business rule updating method and device, computer equipment and storage medium
CN109634730A (en) Method for scheduling task, device, computer equipment and storage medium
CN103176892A (en) Page monitoring method and system
CN110535928B (en) Event pushing method for JAVA intelligent contract of block chain
CN108268305A (en) For the system and method for virtual machine scalable appearance automatically
CN109104368B (en) Connection request method, device, server and computer readable storage medium
CN109857423A (en) Program version update method, device, server and readable storage medium storing program for executing
CN108900627B (en) Network request method, terminal device and storage medium
CN113867600A (en) Development method and device for processing streaming data and computer equipment
FI120286B (en) A method and device arrangement for managing a server-client environment
US20200310828A1 (en) Method, function manager and arrangement for handling function calls
CN113342503B (en) Real-time progress feedback method, device, equipment and storage medium
CN113419818B (en) Basic component deployment method, device, server and storage medium
CN111078311A (en) Middleware control operation method and system
CN112698930B (en) Method, device, equipment and medium for obtaining server identification
EP3672203A1 (en) Distribution method for distributed data computing, device, server and storage medium
CN114465937A (en) Network card testing method, device, server, medium, and computer program product
CN113849320A (en) Development method, control method and computing device
CN112261125B (en) Centralized unit cloud deployment method, device and system
CN110413398B (en) Task scheduling method and device, computer equipment and storage medium

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