CN110599341A - Transaction calling method and system - Google Patents

Transaction calling method and system Download PDF

Info

Publication number
CN110599341A
CN110599341A CN201910891579.8A CN201910891579A CN110599341A CN 110599341 A CN110599341 A CN 110599341A CN 201910891579 A CN201910891579 A CN 201910891579A CN 110599341 A CN110599341 A CN 110599341A
Authority
CN
China
Prior art keywords
transaction
sub
transactions
execution sequence
calling
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
CN201910891579.8A
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 CN201910891579.8A priority Critical patent/CN110599341A/en
Publication of CN110599341A publication Critical patent/CN110599341A/en
Pending legal-status Critical Current

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/46Multiprogramming arrangements
    • G06F9/48Program initiating; Program switching, e.g. by interrupt
    • G06F9/4806Task transfer initiation or dispatching
    • G06F9/4843Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
    • G06F9/4881Scheduling strategies for dispatcher, e.g. round robin, multi-level priority queues
    • 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/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q40/00Finance; Insurance; Tax strategies; Processing of corporate or income taxes
    • G06Q40/04Trading; Exchange, e.g. stocks, commodities, derivatives or currency exchange

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Business, Economics & Management (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Finance (AREA)
  • Accounting & Taxation (AREA)
  • General Engineering & Computer Science (AREA)
  • Development Economics (AREA)
  • Economics (AREA)
  • Marketing (AREA)
  • Strategic Management (AREA)
  • Technology Law (AREA)
  • General Business, Economics & Management (AREA)
  • Devices For Executing Special Programs (AREA)

Abstract

The invention discloses a transaction calling method and a system, wherein the method comprises the following steps: acquiring sub-transaction parameters and an execution sequence of sub-transactions according to preset transaction information, and configuring transaction combination information by using the sub-transaction parameters and the execution sequence of the sub-transactions; and sequentially executing a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information to finish transaction calling. In the process, the transaction result of each sub-transaction is judged, and if the transaction fails, the rollback processing is carried out according to the reverse order of the execution order of the sub-transactions. The invention can reduce the code compiling amount and the testing workload in transaction calling and reduce the development and testing cost.

Description

Transaction calling method and system
Technical Field
The invention relates to the technical field of computers, in particular to a transaction calling method and a transaction calling system.
Background
In the system development process, a business function may involve the execution of multiple independent sub-transactions having certain relevance, such as a financing transaction, which may involve multiple steps of accounting, credit processing, fee processing, and the like. In order to ensure the consistency and correctness of the transaction, the former transaction is rolled back when the subsequent transaction fails.
In the prior art, when a transaction is called, a code is generally written according to a transaction step to call the transaction, and meanwhile, how to call a next transaction is determined according to a call result, and when the transaction fails, rollback processing needs to be performed on various conditions. Specifically, after each transaction is called, the code is needed to be judged, if the transaction is successfully called, the next transaction is called, if the transaction is failed, the rollback processing is carried out, and if the transaction is not failed in the first step, the successful transaction in the previous step needs to be rolled back, and so on. For example, as shown in fig. 2, when there are N steps of transaction calls in a combination, the result of the N steps of call needs to be determined, and at most N-1 steps of transaction rollback is performed when an error is processed. The more transactions involved, the more complex the system processing flow, and the more code branches required. When the transaction is increased or decreased, the corresponding branch code part is added or deleted in the system judgment and rollback, and the influence on the original code logic is larger. It should be noted that the code of each step of the prior art transaction needs to be written manually by the developer.
In summary, the prior art relates to a plurality of transaction call processes, such as transaction result determination, transaction rollback sequence call, and the like, a large number of repeated codes are required for processing, the repeated labor is high, the development and test costs are high, the quality of the codes only depends on the technical level and experience of developers, the quality is uneven, and the quality is difficult to guarantee.
Disclosure of Invention
The embodiment of the invention provides a transaction calling method, which is used for reducing code compiling amount and testing workload in transaction calling and reducing development and testing cost, and comprises the following steps:
acquiring sub-transaction parameters and an execution sequence of sub-transactions according to preset transaction information, and configuring transaction combination information by using the sub-transaction parameters and the execution sequence of the sub-transactions;
and sequentially executing a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information to complete transaction calling, judging the transaction result of each sub-transaction in the process, and if the transaction fails, performing rollback processing according to the sequence opposite to the execution sequence of the sub-transactions.
Optionally, the sequentially executing a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information includes:
acquiring sub-transaction parameters to be traded according to the transaction combination information;
and judging whether other sub-transactions exist subsequently, if so, continuing to perform other sub-transactions according to the execution sequence, otherwise, outputting transaction data and completing transaction calling.
Optionally, the executing the plurality of sub-transactions sequentially according to the execution sequence of the sub-transactions in the transaction combination information further includes:
after each sub-transaction is completed, the transaction result is checked;
and if the transaction fails, performing the rollback processing, otherwise, continuing to perform other sub-transactions according to the execution sequence.
Optionally, the rollback processing is performed on the failed transaction in an order reverse to the execution order of the sub-transactions, and includes:
judging whether the preset sub-transaction has a rollback transaction or not;
if yes, continuing to call the rollback transaction;
otherwise, skipping the preset sub-transactions and continuing to perform rollback processing according to the sequence opposite to the execution sequence of the sub-transactions until all the sub-transactions are rolled back, outputting transaction data and completing transaction calling.
The embodiment of the invention also provides a transaction calling system, which is used for reducing code compiling amount and testing workload in transaction calling and reducing development and testing cost, and comprises the following components:
the transaction combination configuration module is used for acquiring the sub-transaction parameters and the execution sequence of the sub-transactions according to the preset transaction information and configuring the transaction combination information by using the sub-transaction parameters and the execution sequence of the sub-transactions;
and the transaction calling module is used for sequentially executing a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information to complete transaction calling, judging the transaction result of each sub-transaction in the process, and if the transaction fails, performing rollback processing according to the sequence opposite to the execution sequence of the sub-transactions.
Optionally, the transaction invoking module is further configured to:
acquiring sub-transaction parameters to be traded according to the transaction combination information;
and judging whether other sub-transactions exist subsequently, if so, continuing to perform other sub-transactions according to the execution sequence, otherwise, outputting transaction data and completing transaction calling.
Optionally, the transaction invoking module is further configured to:
after each sub-transaction is completed, the transaction result is checked;
and if the transaction fails, performing the rollback processing, otherwise, continuing to perform other sub-transactions according to the execution sequence.
Optionally, the transaction invoking module is further configured to:
judging whether the preset sub-transaction has a rollback transaction or not;
if yes, continuing to call the rollback transaction;
otherwise, skipping the preset sub-transactions and continuing to perform rollback processing according to the sequence opposite to the execution sequence of the sub-transactions until all the sub-transactions are rolled back, outputting transaction data and completing transaction calling.
The embodiment of the present invention further provides a computer device, which includes a memory, a processor, and a computer program stored in the memory and executable on the processor, and the processor implements the method when executing the computer program.
An embodiment of the present invention further provides a computer-readable storage medium, in which a computer program for executing the above method is stored.
In the embodiment of the invention, the combined transaction information is described in a configuration rather than coding mode, the calling sequence of the sub-transactions in the combined transaction information is flexibly configured, the sub-transaction calling processing and the transaction result judgment are uniformly carried out, and the consistent transaction rollback processing is provided, so that the code compiling amount and the testing workload in the transaction calling are greatly reduced, the development and testing cost is reduced, and in addition, developers are not required to repeatedly code each sub-transaction, and the development efficiency and the quality of the system are 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 some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the drawings without creative efforts. In the drawings:
FIG. 1 is a flow chart of a transaction invocation method in an embodiment of the present invention;
FIG. 2 is a flow diagram of a prior art transaction invocation method;
FIG. 3 is a diagram illustrating an exemplary transaction invocation method according to an embodiment of the present invention;
fig. 4 is a schematic structural diagram of a transaction invocation device in an embodiment of the invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention more apparent, the embodiments of the present invention are further described in detail below with reference to the accompanying drawings. The exemplary embodiments and descriptions of the present invention are provided to explain the present invention, but not to limit the present invention.
The embodiment of the invention provides a transaction calling method, as shown in the attached figure 1, the method comprises the following steps:
step 101, acquiring the sub-transaction parameters and the execution sequence of the sub-transactions according to the preset transaction information, and configuring transaction combination information by using the sub-transaction parameters and the execution sequence of the sub-transactions.
In an embodiment, the transaction combination information may be configured in an XML, JSON, attribute file, or the like. The transaction combination information comprises transaction names, transaction methods, input and output parameters, transaction rollback methods, transaction execution sequences and the like.
The "preset transaction information" means: transaction type, name, transaction institution, etc.
The execution of the sub-transactions may be in sequential execution and in parallel execution.
And 102, sequentially executing a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information to complete transaction calling, judging the transaction result of each sub-transaction in the process, and if the transaction fails, performing rollback processing according to the sequence opposite to the execution sequence of the sub-transactions.
In an embodiment, sequentially executing a plurality of sub transactions according to an execution order of the sub transactions in the transaction combination information includes:
acquiring sub-transaction parameters to be traded according to the transaction combination information;
and judging whether other sub-transactions exist subsequently, if so, continuing to perform other sub-transactions according to the execution sequence, otherwise, outputting transaction data and completing transaction calling.
The method comprises the following steps of sequentially executing a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information, and further comprises the following steps:
after each sub-transaction is completed, the transaction result is checked;
and if the transaction fails, performing the rollback processing, otherwise, continuing to perform other sub-transactions according to the execution sequence.
If the transaction fails, performing rollback processing in an order reverse to the execution order of the sub-transactions, including:
judging whether a rollback transaction exists (because the sub-transaction does not need to be rolled back and can be skipped directly, the judgment is needed here);
if yes, continuing to call the rollback transaction; and if the sub-transactions do not exist, the rollback processing is continued until all the sub-transactions are judged or the transaction data is output after the rollback is finished, and the transaction calling is completed. The above steps can be seen in detail in FIG. 3.
The transaction calling method provided by the embodiment of the invention describes the combined transaction information in a configuration rather than coding mode, flexibly configures the calling sequence of the sub-transactions in the combined transaction information, uniformly carries out sub-transaction calling processing and transaction result judgment, and provides consistent transaction rollback processing, thereby greatly reducing code compiling amount and testing workload in transaction calling, reducing development and testing costs, and improving the development efficiency and quality of the system without the need of manually and repeatedly coding each sub-transaction by developers.
Based on the same inventive concept, the embodiment of the present invention further provides a transaction invoking system, as described in the following embodiments. Because the principle of the transaction calling system for solving the problem is similar to that of the transaction calling method, the implementation of the transaction calling system can be referred to the implementation of the transaction calling method, and repeated details are not repeated. As used hereinafter, the term "unit" or "module" may be a combination of software and/or hardware that implements a predetermined function. While the system described in the embodiments below is preferably implemented in software, implementations in hardware, or a combination of software and hardware are also possible and contemplated.
An embodiment of the present invention provides a transaction invoking system, as shown in fig. 4, the system includes:
the transaction combination configuration module 201 is configured to obtain the sub-transaction parameters and the execution sequence of the sub-transactions according to the preset transaction information, and configure the transaction combination information by using the sub-transaction parameters and the execution sequence of the sub-transactions;
the transaction calling module 202 is configured to sequentially execute a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information to complete transaction calling, in this process, determine a transaction result of each sub-transaction, and if the transaction fails, perform rollback processing according to a sequence opposite to the execution sequence of the sub-transactions.
In an embodiment of the present invention, the transaction invoking module 202 is further configured to:
acquiring sub-transaction parameters to be traded according to the transaction combination information;
and judging whether other sub-transactions exist subsequently, if so, continuing to perform other sub-transactions according to the execution sequence, otherwise, outputting transaction data and completing transaction calling.
In an embodiment of the present invention, the transaction invoking module 202 is further configured to:
after each sub-transaction is completed, the transaction result is checked;
and if the transaction fails, performing the rollback processing, otherwise, continuing to perform other sub-transactions according to the execution sequence.
In an embodiment of the present invention, the transaction invoking module 202 is further configured to:
judging whether the preset sub-transaction has a rollback transaction or not;
if yes, continuing to call the rollback transaction;
otherwise, skipping the preset sub-transactions and continuing to perform rollback processing according to the sequence opposite to the execution sequence of the sub-transactions until all the sub-transactions are rolled back, outputting transaction data and completing transaction calling.
The embodiment of the present invention further provides a computer device, which includes a memory, a processor, and a computer program stored in the memory and executable on the processor, and the processor implements the above method when executing the computer program.
An embodiment of the present invention further provides a computer-readable storage medium, in which a computer program for executing the above method is stored.
In conclusion, the invention adopts a configuration mode instead of a hard coding mode, automatically calls the transaction according to the configured information, automatically judges the transaction return result and automatically rolls back the transaction, and only needs to modify the configuration and does not need to modify the code when the sub-transactions in the transaction combination need to be increased or reduced or adjusted, thereby improving the working efficiency and the quality. In addition, the invention is suitable for application scenes such as transaction combination, interface combination and the like.
As will be appreciated by one skilled in the art, embodiments of the present invention may be provided as a method, system, or computer program product. Accordingly, the present invention may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present invention may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and the like) having computer-usable program code embodied therein.
The present invention is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the invention. It will be understood that each flow and/or block of the flow diagrams and/or block diagrams, and combinations of flows and/or blocks in the flow diagrams and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create a system for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including an instruction system which implement the function specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
The above-mentioned embodiments are intended to illustrate the objects, technical solutions and advantages of the present invention in further detail, and it should be understood that the above-mentioned embodiments are only exemplary embodiments of the present invention, and are not intended to limit the scope of the present invention, and any modifications, equivalent substitutions, improvements and the like made within the spirit and principle of the present invention should be included in the scope of the present invention.

Claims (10)

1. A transaction invocation method, characterized by comprising:
acquiring sub-transaction parameters and an execution sequence of sub-transactions according to preset transaction information, and configuring transaction combination information by using the sub-transaction parameters and the execution sequence of the sub-transactions;
and sequentially executing a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information to complete transaction calling, judging the transaction result of each sub-transaction in the process, and if the transaction fails, performing rollback processing according to the sequence opposite to the execution sequence of the sub-transactions.
2. The method of claim 1, wherein sequentially executing the plurality of sub-transactions according to the execution order of the sub-transactions in the transaction combination information comprises:
acquiring sub-transaction parameters to be traded according to the transaction combination information;
and judging whether other sub-transactions exist subsequently, if so, continuing to perform other sub-transactions according to the execution sequence, otherwise, outputting transaction data and completing transaction calling.
3. The method of claim 1, wherein the plurality of sub-transactions are executed sequentially according to an execution order of the sub-transactions in the transaction combination information, further comprising:
after each sub-transaction is completed, the transaction result is checked;
and if the transaction fails, performing the rollback processing, otherwise, continuing to perform other sub-transactions according to the execution sequence.
4. The method of claim 1, wherein performing the rollback processing in an order reverse to an order of execution of the sub-transactions comprises:
judging whether the preset sub-transaction has a rollback transaction or not;
if yes, continuing to call the rollback transaction;
otherwise, skipping the preset sub-transactions and continuing to perform rollback processing according to the sequence opposite to the execution sequence of the sub-transactions until all the sub-transactions are rolled back, outputting transaction data and completing transaction calling.
5. A transaction invocation system, comprising:
the transaction combination configuration module is used for acquiring the sub-transaction parameters and the execution sequence of the sub-transactions according to the preset transaction information and configuring the transaction combination information by using the sub-transaction parameters and the execution sequence of the sub-transactions;
and the transaction calling module is used for sequentially executing a plurality of sub-transactions according to the execution sequence of the sub-transactions in the transaction combination information to complete transaction calling, judging the transaction result of each sub-transaction in the process, and if the transaction fails, performing rollback processing according to the sequence opposite to the execution sequence of the sub-transactions.
6. The system of claim 5, wherein the transaction invocation module is further to:
acquiring sub-transaction parameters to be traded according to the transaction combination information;
and judging whether other sub-transactions exist subsequently, if so, continuing to perform other sub-transactions according to the execution sequence, otherwise, outputting transaction data and completing transaction calling.
7. The system of claim 5, wherein the transaction invocation module is further to:
after each sub-transaction is completed, the transaction result is checked;
and if the transaction fails, performing the rollback processing, otherwise, continuing to perform other sub-transactions according to the execution sequence.
8. The system of claim 5, wherein the transaction invocation module is further to:
judging whether the preset sub-transaction has a rollback transaction or not;
if yes, continuing to call the rollback transaction;
otherwise, skipping the preset sub-transactions and continuing to perform rollback processing according to the sequence opposite to the execution sequence of the sub-transactions until all the sub-transactions are rolled back, outputting transaction data and completing transaction calling.
9. A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, wherein the processor implements the method of any one of claims 1 to 4 when executing the computer program.
10. A computer-readable storage medium, characterized in that the computer-readable storage medium stores a computer program for executing the method of any one of claims 1 to 4.
CN201910891579.8A 2019-09-20 2019-09-20 Transaction calling method and system Pending CN110599341A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910891579.8A CN110599341A (en) 2019-09-20 2019-09-20 Transaction calling method and system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910891579.8A CN110599341A (en) 2019-09-20 2019-09-20 Transaction calling method and system

Publications (1)

Publication Number Publication Date
CN110599341A true CN110599341A (en) 2019-12-20

Family

ID=68861736

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910891579.8A Pending CN110599341A (en) 2019-09-20 2019-09-20 Transaction calling method and system

Country Status (1)

Country Link
CN (1) CN110599341A (en)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111679930A (en) * 2020-06-08 2020-09-18 中国银行股份有限公司 Single-point rollback method and system for CICS online transaction
CN111698233A (en) * 2020-06-03 2020-09-22 中国银行股份有限公司 Message processing method and device
CN111754348A (en) * 2020-06-28 2020-10-09 中国银行股份有限公司 Scene combined transaction method and device
CN111861746A (en) * 2020-07-07 2020-10-30 中国建设银行股份有限公司 Method and device for processing transaction data
CN113643157A (en) * 2021-07-05 2021-11-12 中国人民银行数字货币研究所 Intelligent contract execution method and device
CN113744048A (en) * 2021-09-14 2021-12-03 中国银行股份有限公司 Loan transaction processing method and device

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108009916A (en) * 2017-12-27 2018-05-08 福建省农村信用社联合社 A kind of method and system of the universal payment book keeping operation based on affairs dynamic adjustment
CN109829678A (en) * 2017-11-23 2019-05-31 阿里巴巴集团控股有限公司 A kind of rollback processing method, device and electronic equipment
CN110163572A (en) * 2019-05-21 2019-08-23 东软集团股份有限公司 A kind of chain code function processing method, device and equipment

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109829678A (en) * 2017-11-23 2019-05-31 阿里巴巴集团控股有限公司 A kind of rollback processing method, device and electronic equipment
CN108009916A (en) * 2017-12-27 2018-05-08 福建省农村信用社联合社 A kind of method and system of the universal payment book keeping operation based on affairs dynamic adjustment
CN110163572A (en) * 2019-05-21 2019-08-23 东软集团股份有限公司 A kind of chain code function processing method, device and equipment

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111698233A (en) * 2020-06-03 2020-09-22 中国银行股份有限公司 Message processing method and device
CN111698233B (en) * 2020-06-03 2022-07-19 中国银行股份有限公司 Message processing method and device
CN111679930A (en) * 2020-06-08 2020-09-18 中国银行股份有限公司 Single-point rollback method and system for CICS online transaction
CN111679930B (en) * 2020-06-08 2023-06-20 中国银行股份有限公司 Single-point rollback method and system for CICS online transaction
CN111754348A (en) * 2020-06-28 2020-10-09 中国银行股份有限公司 Scene combined transaction method and device
CN111754348B (en) * 2020-06-28 2023-09-19 中国银行股份有限公司 Scenerized combined transaction method and device
CN111861746A (en) * 2020-07-07 2020-10-30 中国建设银行股份有限公司 Method and device for processing transaction data
CN113643157A (en) * 2021-07-05 2021-11-12 中国人民银行数字货币研究所 Intelligent contract execution method and device
CN113744048A (en) * 2021-09-14 2021-12-03 中国银行股份有限公司 Loan transaction processing method and device

Similar Documents

Publication Publication Date Title
CN110599341A (en) Transaction calling method and system
US9317405B2 (en) Test double generation
CN109240908B (en) Method and device for creating abnormal test case template
CN110633200A (en) Method and device for testing intelligent contracts
WO2021057252A1 (en) Service processing flow configuration method and apparatus, and service request processing method and apparatus
CN111966597B (en) Test data generation method and device
CN111897738B (en) Automatic testing method and device based on atomic service
CN107179982B (en) Cross-process debugging method and device
CN116302708A (en) Data backup method, device, equipment and storage medium based on load balancing
CN111538659B (en) Interface testing method, system, electronic equipment and storage medium of business scene
CN113869902A (en) Block chain transaction execution method and device
CN109766125B (en) Identification method and device for leveling conflict among batches
CN113342512B (en) IO task silencing and driving method and device and related equipment
CN115827028A (en) System upgrading method and device, storage medium and electronic equipment
CN107193619B (en) Method and device for automatically updating compiled version
CN113377652A (en) Test data generation method and device
CN111522635B (en) Computing task processing method, computing task processing device, server and storage medium
CN114237775A (en) Parallel execution method and device, electronic equipment and storage medium
CN113254350A (en) Flink operation testing method, device, equipment and storage medium
CN111160403A (en) Method and device for multiplexing and discovering API (application program interface)
CN111090638A (en) Method and device for comparing transaction functions in database migration
CN110618778A (en) Method and system for automatically generating business data, electronic equipment and computer storage medium
CN117251298B (en) Pipeline task cyclic execution method, system, equipment and medium
US7743076B2 (en) Extensible action sequences coordinating independently created components
CN111813684A (en) Test method, test device and test equipment for web front-end component

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
RJ01 Rejection of invention patent application after publication
RJ01 Rejection of invention patent application after publication

Application publication date: 20191220