CN114880013A - Method and device for processing configuration information of business process - Google Patents

Method and device for processing configuration information of business process Download PDF

Info

Publication number
CN114880013A
CN114880013A CN202210545629.9A CN202210545629A CN114880013A CN 114880013 A CN114880013 A CN 114880013A CN 202210545629 A CN202210545629 A CN 202210545629A CN 114880013 A CN114880013 A CN 114880013A
Authority
CN
China
Prior art keywords
target
business process
script
version number
dynamic
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
CN202210545629.9A
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.)
Bank of China Ltd
Original Assignee
Bank of China 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 Bank of China Ltd filed Critical Bank of China Ltd
Priority to CN202210545629.9A priority Critical patent/CN114880013A/en
Publication of CN114880013A publication Critical patent/CN114880013A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/71Version control; Configuration management
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management

Abstract

The invention discloses a method and a device for processing configuration information of a business process, which can be applied to the financial field or other fields. Acquiring a query instruction; responding to the query instruction, and calling a workflow system to determine whether the version number of the target business process is updated; if the update happens, acquiring a new version number from the workflow system; loading a first target dynamic script from the business system based on the new version number and the process name of the target business process; reading configuration information of the target business process from the first target dynamic script by using the task number of the target business process; if the updating does not occur, loading a second target dynamic script from the business system based on the current version number and the process name of the target business process; and reading the configuration information of the target business process from the second target dynamic script by using the task number. When the business process is changed, the program code does not need to be modified in the business system, and the maintenance efficiency of the configuration information is improved.

Description

Method and device for processing configuration information of business process
Technical Field
The invention relates to the technical field of data processing, in particular to a method and a device for processing configuration information of a business process.
Background
The workflow technology is widely applied to various systems, and the workflow technology is used for modeling the business process and driving the operation of the business process, so that the coupling between the business process and the business system can be effectively reduced.
When the service processing logic of the service process is placed in the service system, the configuration information of the service process needs to be maintained in the service system in a hard coding mode; in the foregoing situation, when the business process changes, the program code also needs to be modified synchronously in the business system, and the maintenance efficiency is low.
Disclosure of Invention
In view of this, embodiments of the present invention provide a method and an apparatus for processing configuration information of a business process, so as to solve the problems of low maintenance efficiency and the like in the existing manner of maintaining configuration information.
In order to achieve the above purpose, the embodiments of the present invention provide the following technical solutions:
the first aspect of the embodiments of the present invention discloses a method for processing configuration information of a business process, where the method includes:
acquiring a query instruction for querying configuration information of a target business process;
responding to the query instruction, and calling a workflow system to determine whether the version number of the target business process is updated;
if the version number of the target business process is updated, acquiring a new version number from the workflow system;
loading a first target dynamic script from the business system based on the new version number and the process name of the target business process;
reading the configuration information of the target business process from the first target dynamic script by using the task number of the target business process;
if the version number of the target business process is not updated, loading a second target dynamic script from a business system based on the current version number and the process name of the target business process;
and reading the configuration information of the target business process from the second target dynamic script by using the task number of the target business process.
Preferably, loading a first target dynamic scenario from the business system based on the new version number and the process name of the target business process includes:
combining the new version number with the process name of the target business process to obtain a first unique identifier;
loading a dynamic script with a script identifier consistent with the first unique identifier from a plurality of dynamic scripts stored in a service system to be a first target dynamic script;
and each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
Preferably, if the version number of the target business process is not updated, loading a second target dynamic script from the business system based on the current version number and the process name of the target business process, including:
if the version number of the target business process is not updated, combining the current version number of the target business process with the process name to obtain a second unique identifier;
loading a dynamic script with a script identifier consistent with the second unique identifier from a plurality of dynamic scripts stored in the service system to be a second target dynamic script;
and each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
Preferably, the first target dynamic scenario and the second target dynamic scenario are Groovy scenarios.
A second aspect of the present invention discloses a device for processing configuration information of a business process, where the device includes:
the first acquisition unit is used for acquiring an inquiry instruction for inquiring the configuration information of the target business process;
a determining unit, configured to respond to the query instruction, and invoke a workflow system to determine whether a version number of the target business process is updated;
a second obtaining unit, configured to obtain a new version number from the workflow system if the version number of the target business process is updated;
a first loading unit, configured to load a first target dynamic script from the business system based on the new version number and the process name of the target business process;
a first reading unit, configured to read configuration information of the target business process from the first target dynamic script by using the task number of the target business process;
a second loading unit, configured to load a second target dynamic script from the business system based on the current version number and the process name of the target business process if the version number of the target business process is not updated;
and the second reading unit is used for reading the configuration information of the target business process from the second target dynamic script by using the task number of the target business process.
Preferably, the first loading unit includes:
the combination module is used for combining the new version number with the process name of the target business process to obtain a first unique identifier;
the loading module is used for loading a dynamic script with a script identifier consistent with the first unique identifier from a plurality of dynamic scripts stored in the service system into a first target dynamic script;
and each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
Preferably, the second loading unit includes:
the combination module is used for combining the current version number of the target business process with the process name to obtain a second unique identifier if the version number of the target business process is not updated;
the loading module is used for loading a dynamic script with a script identifier consistent with the second unique identifier from a plurality of dynamic scripts stored in the service system into a second target dynamic script;
and each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
Preferably, the first target dynamic scenario and the second target dynamic scenario are Groovy scenarios.
A third aspect of an embodiment of the present invention discloses an electronic device, including: the system comprises a processor and a memory, wherein the processor and the memory are connected through a communication bus; the processor is used for calling and executing the program stored in the memory; the memory is configured to store a program, where the program is configured to implement a method for processing configuration information of a business process as disclosed in the first aspect of the embodiment of the present invention.
A fourth aspect of the present invention discloses a computer-readable storage medium, where a computer-executable instruction is stored in the computer-readable storage medium, and the computer-executable instruction is used to execute a method for processing configuration information of a business process disclosed in the first aspect of the present invention.
Based on the method and the device for processing the configuration information of the business process, provided by the embodiment of the invention, a query instruction for querying the configuration information of a target business process is obtained; responding to the query instruction, and calling a workflow system to determine whether the version number of the target business process is updated; if the version number of the target business process is updated, acquiring a new version number from the workflow system; loading a first target dynamic script from the business system based on the new version number and the process name of the target business process; reading configuration information of the target business process from the first target dynamic script by using the task number of the target business process; if the version number of the target business process is not updated, loading a second target dynamic script from the business system based on the current version number and the process name of the target business process; and reading the configuration information of the target business process from the second target dynamic script by using the task number of the target business process. In the scheme, the configuration information of the business process is configured through the dynamic script, when the business process is changed, the new configuration information of the business process can be read from the updated dynamic script, time does not need to be consumed for modifying program codes in a business system, and the maintenance efficiency of the configuration information is improved.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the provided drawings without creative efforts.
Fig. 1 is a flowchart of a method for processing configuration information of a business process according to an embodiment of the present invention;
fig. 2 is another flowchart of a method for processing configuration information of a business process according to an embodiment of the present invention;
fig. 3 is a block diagram of a device for processing configuration information of a business process according to an embodiment of the present invention;
fig. 4 is another block diagram of a device for processing configuration information of a business process according to an embodiment of the present invention;
fig. 5 is a block diagram of another structure of a device for processing configuration information of a business process according to an embodiment of the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
In this application, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
It should be noted that the method and the device for processing the configuration information of the business process provided by the invention can be used in the financial field or other fields. The foregoing is merely an example, and does not limit the application fields of the method and the apparatus for processing configuration information of a business process provided by the present invention.
As known from the background art, when a service processing logic of a service process is placed in a service system, configuration information of the service process needs to be maintained in the service system in a hard coding manner; in the foregoing situation, when the business process changes, the program code also needs to be modified synchronously in the business system, and the maintenance efficiency is low.
Therefore, embodiments of the present invention provide a method and an apparatus for processing configuration information of a business process, where the configuration information of the business process is configured by a dynamic script, and when the business process changes, new configuration information of the business process can be read from an updated dynamic script, and it is not necessary to spend time modifying program codes in a business system, so as to improve maintenance efficiency of the configuration information.
Referring to fig. 1, a flowchart of a method for processing configuration information of a business process according to an embodiment of the present invention is shown, where the method includes:
step S101: and acquiring a query instruction for querying the configuration information of the target business process.
It should be noted that, a user may query configuration information of each service flow in the service system through the service system.
In the process of implementing step S101 specifically, the service system obtains an inquiry instruction for inquiring configuration information of a target service process, where the target service process is a service process in which a user needs to inquire configuration information.
Step S102: and responding to the query instruction, and calling the workflow system to determine whether the version number of the target business process is updated. If the version number of the target business process is updated, executing step S103 to step S105; if the version number of the target business process is not updated, step S106 and step S107 are executed.
It should be noted that, the workflow system stores related information of different versions of business processes, that is, whether a certain business process is updated (that is, whether a version number is updated) can be queried from the workflow system.
In the process of implementing step S102 specifically, the service system responds to the query instruction, calls the designated interface of the workflow system, and queries the version number of the target service flow in the workflow system, thereby determining whether the version number of the target service flow is updated.
It should be noted that the above-mentioned workflow system for querying the version number of the target business process is a workflow system being used by the business system.
After the workflow system is called to determine whether the version number of the target business process is updated, if the version number of the target business process is updated, executing the step S103 to the step S105; if the version number of the target business process is not updated, step S106 and step S107 are executed.
Step S103: and acquiring the new version number from the workflow system.
In the process of implementing step S103 specifically, if the workflow system is called to determine that the version number of the target business process is updated, a new version number corresponding to the target business process is obtained from the workflow system.
Step S104: and loading the first target dynamic script from the business system based on the new version number and the process name of the target business process.
It should be noted that a plurality of dynamic scripts are stored in the service system, and each dynamic script contains configuration information of a certain service process of a certain version; in some embodiments, each dynamic script stored in the service system is provided with a corresponding unique script identifier, and the script identifier of each dynamic script is obtained by combining a process name and a version number of the service process.
In some embodiments, the dynamic script stored in the service system may be a Groovy script or a JavaScript script, and in the embodiments of the present invention, the type of the dynamic script stored in the service system is not specifically limited.
In the process of implementing step S104 specifically, the new version number and the process name of the target business process are combined to obtain a first unique identifier; that is to say, the process name of the target business process and the new version number are combined to obtain a key, and the key is the first unique identifier.
Loading a dynamic script with a script identifier consistent with the first unique identifier from a plurality of dynamic scripts stored in the service system as a first target dynamic script; or, the first unique identifier is used as a key, the dynamic scenario corresponding to the first unique identifier is inquired in the business system, and the inquired dynamic scenario is the first target dynamic scenario.
In some embodiments, the first target dynamic scenario is a Groovy scenario.
Step S105: and reading the configuration information of the target business process from the first target dynamic script by using the task number of the target business process.
In the process of implementing step S105 specifically, after the first target dynamic scenario is loaded in the service system, the configuration information of the target service flow is read from the first target dynamic scenario according to the task number of the target service flow.
Step S106: and loading a second target dynamic script from the business system based on the current version number and the process name of the target business process.
In the process of implementing step S106 specifically, if it is determined that the version number of the target business process is not updated, acquiring a current version number of the target business process; it can be understood that, under the condition that the version number of the target business process is not updated, the business system may obtain the current version number of the target business process stored in advance, or may obtain the current version number through the workflow system.
Combining the current version number of the target business process with the process name to obtain a second unique identifier; that is to say, the process name and the current version number of the target business process are combined to obtain a key, and the key is the second unique identifier.
Loading a dynamic script with a script identifier consistent with the second unique identifier from a plurality of dynamic scripts stored in the service system as a second target dynamic script; or, the second unique identifier is used as a key, the dynamic scenario corresponding to the second unique identifier is queried in the business system, and the queried dynamic scenario is the second target dynamic scenario.
In some embodiments, the second target dynamic scenario is a Groovy scenario.
Step S107: and reading the configuration information of the target business process from the second target dynamic script by using the task number of the target business process.
In the process of implementing step S107 specifically, after the second target dynamic scenario is loaded in the service system, the configuration information of the target service flow is read from the second target dynamic scenario according to the task number of the target service flow.
In combination with the contents of the above embodiments, it can be seen that when a certain service flow is updated, the dynamic script corresponding to the service flow is updated in the service system, so as to implement dynamic update of the configuration information of the service flow; when the configuration information of the business process needs to be loaded, the updated dynamic script can be inquired and obtained in the business system according to the new version number and the process name of the business process, and then the configuration information of the business process is obtained from the updated dynamic script. The configuration information of the business process is transferred to the business system in a dynamic script mode, so that the dependence of the business process on the workflow system can be avoided, and the workflow system adopted by the business system can be conveniently switched.
In the embodiment of the invention, the configuration information of the business process is configured through the dynamic script, when the business process is changed, the new configuration information of the business process can be read from the updated dynamic script, the program code does not need to be modified in the business system by consuming time, and the maintenance efficiency of the configuration information is improved.
To better explain the contents of the above embodiments, it is illustrated by fig. 2; referring to fig. 2, another flowchart of a method for processing configuration information of a business process according to an embodiment of the present invention is shown, including the following steps:
step S201: and the business system calls the workflow system to inquire the process related information of the target business process.
In the process of implementing step S201 specifically, the service system calls the workflow system to query the process-related information of the target service process through the interface, so as to determine whether the target service process is updated through the workflow system.
Step S202: the workflow system judges whether the target business process is updated. If the version number is updated, feeding back the new version number to the service system, and executing step S203; if no update occurs, step S204 is executed.
Step S203: and the business system loads a new Groovy script in the business system according to the process name and the new version number of the target business process. Step S205 is performed.
It should be noted that the new Groovy script is the first target dynamic script mentioned above.
Step S204: and the business system loads the old Groovy script in the business system according to the process name and the current version number of the target business process. Step S205 is performed.
It should be noted that the old Groovy script is the second target dynamic script mentioned above.
Step S205: and the business system reads the configuration information of the target business process from the loaded Groovy script by using the task number of the target business process.
It should be noted that, if the loaded Groovy script is a new Groovy script, the configuration information of the target business process is read from the new Groovy script; and if the loaded Groovy script is the old Groovy script, reading the configuration information of the target business process from the old Groovy script.
Corresponding to the method for processing configuration information of a business process provided in the foregoing embodiment of the present invention, referring to fig. 3, an embodiment of the present invention further provides a structural block diagram of a device for processing configuration information of a business process, where the device includes: a first acquisition unit 301, a determination unit 302, a second acquisition unit 303, a first loading unit 304, a first reading unit 305, a second loading unit 306, and a second reading unit 307;
a first obtaining unit 301, configured to obtain a query instruction for querying configuration information of a target business process.
A determining unit 302, configured to, in response to the query instruction, invoke the workflow system to determine whether the version number of the target business process is updated.
A second obtaining unit 303, configured to obtain a new version number from the workflow system if the version number of the target business process is updated.
A first loading unit 304, configured to load the first target dynamic scenario from the business system based on the new version number and the process name of the target business process.
A first reading unit 305, configured to read configuration information of the target business process from the first target dynamic scenario by using the task number of the target business process.
A second loading unit 306, configured to load a second target dynamic script from the business system based on the current version number and the process name of the target business process if the version number of the target business process is not updated.
A second reading unit 307, configured to read the configuration information of the target business process from the second target dynamic scenario by using the task number of the target business process.
In some embodiments, the first target dynamic scenario and the second target dynamic scenario are Groovy scenarios.
In the embodiment of the invention, the configuration information of the business process is configured through the dynamic script, when the business process is changed, the new configuration information of the business process can be read from the updated dynamic script, the program code does not need to be modified in the business system by consuming time, and the maintenance efficiency of the configuration information is improved.
Preferably, referring to fig. 4 in combination with the content shown in fig. 3, an embodiment of the present invention further provides another structural block diagram of a device for processing configuration information of a business process, where the first loading unit 304 includes:
and the combining module 3041 is configured to combine the new version number and the process name of the target business process to obtain the first unique identifier.
The loading module 3042 is configured to, from the multiple dynamic scripts stored in the service system, load a dynamic script whose script identifier is consistent with the first unique identifier as a first target dynamic script. Each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
Preferably, referring to fig. 5 in combination with the content shown in fig. 3, an embodiment of the present invention further provides another structural block diagram of a device for processing configuration information of a business process, where the second loading unit 306 includes:
the combination module 3061 is configured to, if the version number of the target business process is not updated, combine the current version number of the target business process with the process name to obtain the second unique identifier.
The loading module 3062 is configured to load, from the plurality of dynamic scripts stored in the service system, a dynamic script whose script identifier is consistent with the second unique identifier as a second target dynamic script. Each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
Preferably, an embodiment of the present invention further provides an electronic device, including: the processor and the memory are connected through a communication bus; the processor is used for calling and executing the program stored in the memory; and the memory is used for storing programs, and the programs are used for realizing the processing method of the configuration information of the business process disclosed by the embodiment of the method.
Preferably, an embodiment of the present invention further provides a computer-readable storage medium, where computer-executable instructions are stored in the computer-readable storage medium, and the computer-executable instructions are used to execute the method for processing configuration information of a business process disclosed in the foregoing method embodiment.
In summary, embodiments of the present invention provide a method and an apparatus for processing configuration information of a business process, where configuration information of a business process is configured through a dynamic script, and when the business process changes, new configuration information of the business process can be read from an updated dynamic script, which does not need to consume time to modify a program code in a business system, and improves maintenance efficiency of the configuration information.
The embodiments in the present specification are described in a progressive manner, and the same and similar parts among the embodiments are referred to each other, and each embodiment focuses on the differences from the other embodiments. In particular, the system or system embodiments are substantially similar to the method embodiments and therefore are described in a relatively simple manner, and reference may be made to some of the descriptions of the method embodiments for related points. The above-described system and system embodiments are only illustrative, wherein the units described as separate parts may or may not be physically separate, and the parts displayed as units may or may not be physical units, may be located in one place, or may be distributed on a plurality of network units. Some or all of the modules may be selected according to actual needs to achieve the purpose of the solution of the present embodiment. One of ordinary skill in the art can understand and implement it without inventive effort.
Those of skill would further appreciate that the various illustrative elements and algorithm steps described in connection with the embodiments disclosed herein may be implemented as electronic hardware, computer software, or combinations of both, and that the various illustrative components and steps have been described above generally in terms of their functionality in order to clearly illustrate this interchangeability of hardware and software. Whether such functionality is implemented as hardware or software depends upon the particular application and design constraints imposed on the implementation. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present invention.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present invention. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the scope of the invention. Thus, the present invention is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.

Claims (10)

1. A method for processing configuration information of a business process is characterized by comprising the following steps:
acquiring a query instruction for querying configuration information of a target business process;
responding to the query instruction, and calling a workflow system to determine whether the version number of the target business process is updated;
if the version number of the target business process is updated, acquiring a new version number from the workflow system;
loading a first target dynamic script from the business system based on the new version number and the process name of the target business process;
reading the configuration information of the target business process from the first target dynamic script by using the task number of the target business process;
if the version number of the target business process is not updated, loading a second target dynamic script from a business system based on the current version number and the process name of the target business process;
and reading the configuration information of the target business process from the second target dynamic script by using the task number of the target business process.
2. The method of claim 1, wherein loading a first target dynamic scenario from a business system based on the new version number and the process name of the target business process comprises:
combining the new version number with the process name of the target business process to obtain a first unique identifier;
loading a dynamic script with a script identifier consistent with the first unique identifier from a plurality of dynamic scripts stored in a service system to be a first target dynamic script;
and each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
3. The method of claim 1, wherein if the version number of the target business process is not updated, loading a second target dynamic script from a business system based on the current version number and process name of the target business process comprises:
if the version number of the target business process is not updated, combining the current version number of the target business process with the process name to obtain a second unique identifier;
loading a dynamic script with a script identifier consistent with the second unique identifier from a plurality of dynamic scripts stored in the service system to be a second target dynamic script;
and each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
4. A method according to any of claims 1-3, wherein the first target dynamic scenario and the second target dynamic scenario are Groovy scenarios.
5. An apparatus for processing configuration information of a business process, the apparatus comprising:
the first acquisition unit is used for acquiring an inquiry instruction for inquiring the configuration information of the target business process;
a determining unit, configured to respond to the query instruction, and invoke a workflow system to determine whether a version number of the target business process is updated;
a second obtaining unit, configured to obtain a new version number from the workflow system if the version number of the target business process is updated;
a first loading unit, configured to load a first target dynamic script from the business system based on the new version number and the process name of the target business process;
a first reading unit, configured to read configuration information of the target business process from the first target dynamic script by using the task number of the target business process;
a second loading unit, configured to load a second target dynamic script from the business system based on the current version number and the process name of the target business process if the version number of the target business process is not updated;
and the second reading unit is used for reading the configuration information of the target business process from the second target dynamic script by using the task number of the target business process.
6. The apparatus of claim 5, wherein the first loading unit comprises:
the combination module is used for combining the new version number with the process name of the target business process to obtain a first unique identifier;
the loading module is used for loading a dynamic script with a script identifier consistent with the first unique identifier from a plurality of dynamic scripts stored in the service system into a first target dynamic script;
and each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
7. The apparatus of claim 5, wherein the second loading unit comprises:
the combination module is used for combining the current version number of the target business process with the process name to obtain a second unique identifier if the version number of the target business process is not updated;
the loading module is used for loading a dynamic script with a script identifier consistent with the second unique identifier from a plurality of dynamic scripts stored in the service system into a second target dynamic script;
and each dynamic script in the service system is provided with a corresponding script identifier, and the script identifier of each dynamic script is obtained by combining the version number and the process name of the service process.
8. The apparatus of any of claims 5-7, wherein the first target dynamic scenario and the second target dynamic scenario are Groovy scenarios.
9. An electronic device, comprising: the system comprises a processor and a memory, wherein the processor and the memory are connected through a communication bus; the processor is used for calling and executing the program stored in the memory; the memory is used for storing a program, and the program is used for realizing the processing method of the configuration information of the business process according to any one of claims 1 to 4.
10. A computer-readable storage medium, wherein computer-executable instructions are stored in the computer-readable storage medium, and the computer-executable instructions are used for executing the method for processing the configuration information of the business process according to any one of claims 1 to 4.
CN202210545629.9A 2022-05-19 2022-05-19 Method and device for processing configuration information of business process Pending CN114880013A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202210545629.9A CN114880013A (en) 2022-05-19 2022-05-19 Method and device for processing configuration information of business process

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202210545629.9A CN114880013A (en) 2022-05-19 2022-05-19 Method and device for processing configuration information of business process

Publications (1)

Publication Number Publication Date
CN114880013A true CN114880013A (en) 2022-08-09

Family

ID=82678241

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202210545629.9A Pending CN114880013A (en) 2022-05-19 2022-05-19 Method and device for processing configuration information of business process

Country Status (1)

Country Link
CN (1) CN114880013A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN117474312A (en) * 2023-12-28 2024-01-30 图快数字科技(杭州)有限公司 Visual business flow arranging method, system, electronic equipment and storage medium

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN117474312A (en) * 2023-12-28 2024-01-30 图快数字科技(杭州)有限公司 Visual business flow arranging method, system, electronic equipment and storage medium
CN117474312B (en) * 2023-12-28 2024-04-05 图快数字科技(杭州)有限公司 Visual business flow arranging method, system, electronic equipment and storage medium

Similar Documents

Publication Publication Date Title
CN109492017B (en) Service information query processing method, system, computer equipment and storage medium
CN109710428B (en) Dynamic calling method and device for implementation class
CN112929401B (en) Registration method and device
US10715628B2 (en) Attribute operating method and device
CN114880013A (en) Method and device for processing configuration information of business process
CN113656098B (en) Configuration acquisition method and system
CN101673217A (en) Method for realizing remote program call and system thereof
CN112860787A (en) Method for switching master nodes in distributed master-slave system, master node device and storage medium
CN108845800B (en) Method, device, equipment and storage medium for realizing component extension function
CN113946427A (en) Task processing method, processor and storage medium for multi-operating system
CN108228842B (en) Docker mirror image library file storage method, terminal, device and storage medium
CN108664343A (en) A kind of stateful call method and device of micro services
CN110263305B (en) Configuration file comparison method, device, equipment and storage medium
CN112328325A (en) Execution method and device of model file, terminal equipment and storage medium
CN115185576A (en) Process customization method and system based on process application system
CN111079390B (en) Method and device for determining selection state of check box list
CN111061576B (en) Method and system for creating entity object
CN114490738A (en) External data query method and device based on Flink and computer equipment
CN113312412A (en) Statistical data acquisition method and device, electronic equipment and storage medium
CN111400058A (en) Method and device for calling message, computer equipment and storage medium
CN110944047A (en) Distributed application monitoring method and device
CN112068899A (en) Plug-in loading method and device, electronic equipment and storage medium
CN110673931A (en) Distributed calculation method for document synthesis, document synthesis system and control device thereof
CN111078571A (en) Test method for simulation response, terminal device and computer readable storage medium
CN111861292A (en) Waybill number generation method, apparatus, server 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