CN107291455B - Method and system for realizing transfer service based on factory mode - Google Patents

Method and system for realizing transfer service based on factory mode Download PDF

Info

Publication number
CN107291455B
CN107291455B CN201710390456.7A CN201710390456A CN107291455B CN 107291455 B CN107291455 B CN 107291455B CN 201710390456 A CN201710390456 A CN 201710390456A CN 107291455 B CN107291455 B CN 107291455B
Authority
CN
China
Prior art keywords
transfer
service
type
instruction
service type
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201710390456.7A
Other languages
Chinese (zh)
Other versions
CN107291455A (en
Inventor
贾莎莎
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Beijing Si Tech Information Technology Co Ltd
Original Assignee
Beijing Si Tech Information Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Beijing Si Tech Information Technology Co Ltd filed Critical Beijing Si Tech Information Technology Co Ltd
Priority to CN201710390456.7A priority Critical patent/CN107291455B/en
Publication of CN107291455A publication Critical patent/CN107291455A/en
Application granted granted Critical
Publication of CN107291455B publication Critical patent/CN107291455B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/20Software design
    • G06F8/24Object-oriented
    • 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
    • G06Q20/00Payment architectures, schemes or protocols
    • G06Q20/08Payment architectures
    • G06Q20/10Payment architectures specially adapted for electronic funds transfer [EFT] systems; specially adapted for home banking systems

Abstract

The invention relates to a method and a system for realizing transfer service based on a factory mode, wherein the method comprises the following steps: defining a transfer interface according to a transfer method corresponding to a preset transfer service type; receiving a transfer instruction, and creating a transfer type object corresponding to the transfer service type of the transfer instruction by adopting a spring frame factory mode; and acquiring a corresponding transfer interface according to the transfer service type of the transfer instruction, calling the transfer interface to execute the transfer instruction through the transfer type object, and outputting a result of executing the transfer instruction. The invention can adopt the transfer interface to process different types of transfer services in a centralized way, improves the processing efficiency of the transfer services, adopts the factory mode to establish the transfer type object, has simple codes and good reusability, and solves the problems of the prior art that the transfer services are dispersed, the transfer services have poor definition, more codes are redundant and the reusability is poor.

Description

Method and system for realizing transfer service based on factory mode
Technical Field
The invention relates to the field of finance, in particular to a method and a system for realizing transfer service based on a factory model.
Background
In a telecommunication industry system, various transfers are frequently available, such as ordinary on-line user transfers, special account book transfers, group telephone charge red packages and the like. The business logic of the transfer realization processes is the same, the difference is that the transferable accounts are different among different transfers, and certain rules have different limits.
In the transfer system in the prior art, transfer services are dispersed, the definition is poor, the code redundancy is high, the reusability is poor, great inconvenience is brought to related workers, and the efficiency and the benefit of a company are influenced.
Disclosure of Invention
The invention provides a method and a system for realizing transfer service based on a factory mode, which solve the problems of dispersed transfer service, poor transfer service definition, more code redundancy and poor reusability in a transfer system in the prior art.
The technical scheme for solving the technical problems is as follows: a method for realizing transfer service based on factory mode includes the following steps:
s1, creating a transfer interface according to a transfer method corresponding to the preset transfer service type;
s2, receiving a transfer instruction, and creating a transfer type object corresponding to the transfer service type of the transfer instruction by adopting a spring frame factory mode;
and S3, acquiring a corresponding transfer interface according to the transfer service type of the transfer instruction, calling the transfer interface to execute the transfer instruction through the transfer type object, and outputting the result of executing the transfer instruction.
The invention has the beneficial effects that: the invention can adopt the transfer interface to process different types of transfer services in a centralized way, improves the processing efficiency of the transfer services, adopts the factory mode to establish the transfer type object, has simple codes and good reusability, and solves the problems of the prior art that the transfer services are dispersed, the transfer services have poor definition, more codes are redundant and the reusability is poor.
On the basis of the technical scheme, the invention can be further improved as follows.
Further, the preset transfer service type comprises a transfer amount obtaining service, a transfer list service combined according to an account book, an information inquiry service, a short message sending service, a transfer account pre-storage verification service and a limit verification service.
The beneficial effect of adopting the further scheme is that: in the further technical scheme, various preset transfer service types are enumerated, and transfer interfaces are established for the transfer service types, so that the transfer service type is clear in category, concise in code, strong in reusability and strong in readability.
Further, the transfer type object comprises a balance service type object, a charge atom type object, a user type object and an agent type object.
The beneficial effect of adopting the further scheme is that: in the further technical scheme, the transfer type objects are included, so that different transfer type objects can be created according to different transfer types, the processing efficiency of transfer services is further improved, and meanwhile, the codes are concise and the reusability is good.
Further, step S0 is further included before S1, where S0 specifically is: and creating a dependent object corresponding to the preset transfer service type and storing the dependent object in a spring container.
The beneficial effect of adopting the further scheme is that: according to the further technical scheme, the dependency object corresponding to the preset transfer service type is created through the characteristic of reverse control of the Spring frame and is stored in the Spring container, the dependency object corresponding to the preset transfer service type is quickly and efficiently created, and the safety and reliability of the system are improved.
Further, the step S1 specifically includes: defining a transfer realization class according to a transfer method corresponding to a preset transfer service type, and establishing a transfer interface by adopting the transfer realization class;
the S2 specifically includes the following steps:
s21, receiving a transfer instruction, matching the transfer service type of the transfer instruction with a preset transfer service type, and acquiring a corresponding dependence object;
and S22, instantiating the dependency object by adopting a spring frame factory mode, and generating a transfer type object corresponding to the transfer service type of the transfer instruction.
The beneficial effect of adopting the further scheme is that: according to the further technical scheme, a transfer realization class is defined according to a transfer method corresponding to a preset transfer service type, a transfer interface is established according to the transfer realization class, the transfer interface is conveniently and quickly defined, codes are concise, reusability is high, and practicability of the method is enhanced; through the control reversal and dependence injection characteristics of a Spring frame, the dependence object is instantiated through a factory mode, a transfer type object corresponding to the transfer service type of the transfer instruction is generated, and a corresponding transfer interface is used for pointing to the transfer type object, so that the exposure and creation logic is effectively avoided, and the safety and reliability of the system are improved.
In order to solve the technical problem of the invention, the invention also provides a system for realizing the transfer service based on the factory mode, which comprises the following modules:
the first establishing module is used for establishing a transfer interface according to a transfer method corresponding to a preset transfer service type;
the second creation module is used for receiving a transfer instruction and creating a transfer type object corresponding to the transfer service type of the transfer instruction by adopting a spring frame factory mode;
and the execution module is used for acquiring a corresponding transfer interface according to the transfer service type of the transfer instruction, calling the transfer interface through the transfer type object to execute the transfer instruction, and outputting a result of executing the transfer instruction.
The invention has the beneficial effects that: the invention can adopt the transfer interface to process different types of transfer services in a centralized way, improves the processing efficiency of the transfer services, adopts the factory mode to establish the transfer type object, has simple codes and good reusability, and solves the problems of the prior art that the transfer services are dispersed, the transfer services have poor definition, more codes are redundant and the reusability is poor.
Further, the preset transfer service type comprises a transfer amount obtaining service, a transfer list service combined according to an account book, an information inquiry service, a short message sending service, a transfer account pre-storage verification service and a limit verification service.
The beneficial effect of adopting the further scheme is that: in the further technical scheme, various preset transfer service types are enumerated, and transfer interfaces are established for the transfer service types, so that the transfer service type is clear in category, concise in code, strong in reusability and strong in readability.
Further, the transfer type object comprises a balance service type object, a charge atom type object, a user type object and an agent type object.
The beneficial effect of adopting the further scheme is that: the further technical scheme comprises a plurality of transfer type objects, so that different transfer type objects can be created according to different transfer types, the processing efficiency of transfer services is further improved, and meanwhile, the codes are concise and the reusability is good.
Further, the system also comprises a third creating module, wherein the third creating module is used for creating a dependent object corresponding to the preset transfer service type and storing the dependent object in a spring container.
The beneficial effect of adopting the further scheme is that: according to the further technical scheme, the dependency object corresponding to the preset transfer service type is created through the characteristic of reverse control of the Spring frame and is stored in the Spring container, the dependency object corresponding to the preset transfer service type is quickly and efficiently created, and the safety and reliability of the system are improved.
Further, the first creation module is specifically used for defining a transfer realization class according to a transfer method corresponding to a preset transfer service type, and creating a transfer interface by adopting the transfer realization class;
the second creation module includes the following units:
the matching unit is used for receiving a transfer instruction, matching the transfer service type of the transfer instruction with a preset transfer service type and acquiring a corresponding dependence object;
and the creating unit is used for instantiating the dependency object by adopting a spring frame factory mode and generating a transfer type object corresponding to the transfer service type of the transfer instruction.
The beneficial effect of adopting the further scheme is that: according to the further technical scheme, a transfer realization class is defined according to a transfer method corresponding to a preset transfer service type, a transfer interface is established according to the transfer realization class, the transfer interface is conveniently and quickly defined, codes are concise, reusability is high, and practicability of the method is enhanced; through the control reversal and dependence injection characteristics of a Spring frame, the dependence object is instantiated through a factory mode, a transfer type object corresponding to the transfer service type of the transfer instruction is generated, and a corresponding transfer interface is used for pointing to the transfer type object, so that the exposure and creation logic is effectively avoided, and the safety and reliability of the system are improved.
Drawings
Fig. 1 is a schematic flowchart of a method for implementing a transfer service based on a factory model according to embodiment 1 of the present invention;
fig. 2 is a schematic flowchart of S0 in the method for implementing transfer service based on factory model according to embodiment 2 of the present invention;
fig. 3 is a schematic flowchart of S2 in the method for implementing transfer service based on factory model according to embodiment 3 of the present invention;
FIG. 4 is a schematic structural diagram of a system for implementing transfer service based on a factory model according to embodiment 4 of the present invention;
FIG. 5 is a schematic structural diagram of a third creating module in the system for implementing transfer service based on factory model according to embodiment 5 of the present invention;
fig. 6 is a schematic structural diagram of a second creating module in the system for implementing transfer service based on the factory model according to embodiment 6 of the present invention.
Detailed Description
The principles and features of this invention are described below in conjunction with the following drawings, which are set forth by way of illustration only and are not intended to limit the scope of the invention.
Fig. 1 is a schematic flow chart of a method for implementing a transfer service based on a factory model according to embodiment 1 of the present invention, as shown in fig. 1, including the following steps:
s1, creating a transfer interface according to a transfer method corresponding to the preset transfer service type;
s2, receiving a transfer instruction, and creating a transfer type object corresponding to the transfer service type of the transfer instruction by adopting a spring frame factory mode;
and S3, acquiring a corresponding transfer interface according to the transfer service type of the transfer instruction, calling the transfer interface to execute the transfer instruction through the transfer type object, and outputting the result of executing the transfer instruction.
The Spring framework was created due to the complexity of software development, something that was previously only possible with EJBs, done by the basic JavaBean. The essence of Spring includes controlled inversion and dependent injection. Control reversal, i.e. ioc (inversion of control), which gives the container the call right of an object traditionally handled directly by the program code, implements the assembly and management of the object components through the container, i.e. transfers the component object control right from the program code itself to the external container. The basic principle of dependency injection is that the application component is not responsible for finding resources or other dependent collaboration objects, the configuration object should be responsible for the container, and the logic for "finding resources" should be extracted from the code of the application component and handed to IoC container. Many design models are used in spring, the most typical of which is the factory model. The factory mode provides a very flexible and powerful dynamic expansion mechanism for the system structure, and as long as a specific factory method is replaced, the functions of the system can be changed into the changes without changing a little at other places of the system. Meanwhile, part of the complexity of the program is concentrated on the implementation of the interface, and a programmer can concentrate on how to implement business logic by implementing the interface and concentrate on interfacing a new implementation to the whole program by updating a factory registration mode. In the embodiment, transfer services of different types are processed in a centralized mode through the transfer interfaces, the processing efficiency of the transfer services is improved, meanwhile, the transfer type object is created in a factory mode, codes are concise, reusability is good, and the problems that transfer services are dispersed, transfer service definition is poor, code redundancy is high, and reusability is poor in the prior art are solved.
Preferably, in an embodiment of the present invention, the preset transfer service type includes a transfer amount obtaining service, a transfer list obtaining service combined according to an account book, an information query service, a short message sending service, a transfer account pre-storage verification service, and a limit verification service. The embodiment enumerates a plurality of preset transfer service types, creates a transfer interface for the transfer service types, and has the advantages of clear category, concise code, strong reusability and strong readability.
Preferably, in an embodiment of the present invention, the transfer type object includes a balance service type object, a cost atom type object, a user type object, and an agent type object, so that different transfer type objects can be created for different transfer types, which further improves the processing efficiency of the transfer service, and meanwhile, the code is simple and the reusability is good.
Fig. 2 is a schematic flowchart of S0 in the method for implementing a transfer service based on a factory model according to embodiment 2 of the present invention, as shown in fig. 2, before the step S1, the step S0 is further included, and the step S0 specifically includes: and creating a dependent object corresponding to the preset transfer service type and storing the dependent object in a spring container. In the embodiment, the dependent object corresponding to the preset transfer service type is created through the characteristic of reverse control of the Spring frame and is stored in the Spring container, so that the dependent object corresponding to the preset transfer service type is quickly and efficiently created, and the safety and reliability of the system are improved.
Fig. 3 is a schematic flowchart of S2 in the method for implementing a transfer service based on a factory model according to embodiment 3 of the present invention, and as shown in fig. 3, the step S1 specifically includes: defining a transfer realization class according to a transfer method corresponding to a preset transfer service type, and establishing a transfer interface by adopting the transfer realization class;
the S2 specifically includes the following steps:
s21, receiving a transfer instruction, matching the transfer service type of the transfer instruction with a preset transfer service type, and acquiring a corresponding dependence object;
and S22, instantiating the dependency object by adopting a spring frame factory mode, and generating a transfer type object corresponding to the transfer service type of the transfer instruction. According to the embodiment, the transfer realization class is defined according to the transfer method corresponding to the preset transfer service type, and the transfer interface is established according to the transfer realization class, so that the transfer interface is conveniently and quickly defined, the codes are simple, the reusability is high, and the practicability of the invention is enhanced; through the control reversal and dependence injection characteristics of a Spring frame, the dependence object is instantiated through a factory mode, a transfer type object corresponding to the transfer service type of the transfer instruction is generated, and a corresponding transfer interface is used for pointing to the transfer type object, so that the exposure and creation logic is effectively avoided, and the safety and reliability of the system are improved.
Fig. 4 is a schematic structural diagram of a system for implementing transfer service based on a factory model provided in embodiment 4, and as shown in fig. 4, the system includes the following modules:
the first establishing module is used for establishing a transfer interface according to a transfer method corresponding to a preset transfer service type;
the second creation module is used for receiving a transfer instruction and creating a transfer type object corresponding to the transfer service type of the transfer instruction by adopting a spring frame factory mode;
and the execution module is used for acquiring a corresponding transfer interface according to the transfer service type of the transfer instruction, calling the transfer interface through the transfer type object to execute the transfer instruction, and outputting a result of executing the transfer instruction.
According to the method and the device, transfer services of different types can be processed in a centralized mode through the transfer interfaces, the processing efficiency of the transfer services is improved, meanwhile, a factory mode is adopted to create the transfer type object, the codes are concise, the reusability is good, and the problems that transfer services are scattered, the transfer services are poor in definition, the codes are redundant, and the reusability is poor in the prior art are solved.
Preferably, in an embodiment of the present invention, the preset transfer service type includes a transfer amount obtaining service, a transfer list obtaining service combined according to an account book, an information query service, a short message sending service, a transfer account pre-storage verification service, and a limit verification service. The embodiment enumerates a plurality of preset transfer service types, creates a transfer interface for the transfer service types, and has the advantages of clear category, concise code, strong reusability and strong readability.
Preferably, in an embodiment of the present invention, the transfer type object includes a balance service type object, a charge atom type object, a user type object, and an agent type object. The embodiment comprises a plurality of transfer type objects, so that different transfer type objects can be created according to different transfer types, the processing efficiency of transfer services is further improved, and meanwhile, the code is simple and the reusability is good.
Fig. 5 is a schematic structural diagram of a third creating module in the system for implementing transfer service based on the factory model according to embodiment 5 of the present invention, and as shown in fig. 5, the system further includes the third creating module, where the third creating module is configured to create a dependent object corresponding to a preset transfer service type, and store the dependent object in a spring container. In the embodiment, the dependent object corresponding to the preset transfer service type is created through the characteristic of reverse control of the Spring frame and is stored in the Spring container, so that the dependent object corresponding to the preset transfer service type is quickly and efficiently created, and the safety and reliability of the system are improved.
Fig. 6 is a schematic structural diagram of a second creating module in the system for implementing transfer services based on the factory model according to embodiment 6 of the present invention, where as shown in fig. 6, the first creating module is specifically configured to define a transfer implementation class according to a transfer method corresponding to a preset transfer service type, and create a transfer interface using the transfer implementation class;
the second creation module includes the following units:
the matching unit is used for receiving a transfer instruction, matching the transfer service type of the transfer instruction with a preset transfer service type and acquiring a corresponding dependence object;
and the creating unit is used for instantiating the dependency object by adopting a spring frame factory mode and generating a transfer type object corresponding to the transfer service type of the transfer instruction. According to the embodiment, the transfer realization class is defined according to the transfer method corresponding to the preset transfer service type, and the transfer interface is established according to the transfer realization class, so that the transfer interface is conveniently and quickly defined, the codes are simple, the reusability is high, and the practicability of the invention is enhanced; through the control reversal and dependence injection characteristics of a Spring frame, the dependence object is instantiated through a factory mode, a transfer type object corresponding to the transfer service type of the transfer instruction is generated, and a corresponding transfer interface is used for pointing to the transfer type object, so that the exposure and creation logic is effectively avoided, and the safety and reliability of the system are improved.
The above description is only for the purpose of illustrating the preferred embodiments of the present invention and is not to be construed as limiting the invention, and any modifications, equivalents, improvements and the like that fall within the spirit and principle of the present invention are intended to be included therein.

Claims (6)

1. A method for realizing transfer service based on factory mode is characterized by comprising the following steps:
s1, creating a transfer interface according to a transfer method corresponding to the preset transfer service type;
s2, receiving a transfer instruction, and creating a transfer type object corresponding to the transfer service type of the transfer instruction by adopting a spring frame factory mode;
s3, acquiring a corresponding transfer interface according to the transfer service type of the transfer instruction, calling the transfer interface to execute the transfer instruction through the transfer type object, and outputting the result of executing the transfer instruction;
before S1, the method further includes step S0, where S0 specifically includes: creating a dependent object corresponding to a preset transfer service type and storing the dependent object in a spring container;
the step S1 specifically includes: defining a transfer realization class according to a transfer method corresponding to a preset transfer service type, and establishing a transfer interface by adopting the transfer realization class;
the S2 specifically includes the following steps:
s21, receiving a transfer instruction, matching the transfer service type of the transfer instruction with a preset transfer service type, and acquiring a corresponding dependence object;
and S22, instantiating the dependency object by adopting a spring frame factory mode, and generating a transfer type object corresponding to the transfer service type of the transfer instruction.
2. A method of account transfer based on a factory model as recited in claim 1, wherein the predetermined account transfer service types include an account transfer amount acquisition service, an account transfer list acquisition service combined according to an account book, an information inquiry service, a short message transmission service, a transfer-out account pre-storage verification service, and a limit verification service.
3. A method of transfer service based on a factory model as recited in claim 1, wherein the transfer type objects include a balance service type object, a fee atom type object, a user type object, and an agent type object.
4. A system for realizing transfer service based on factory mode is characterized by comprising the following modules:
the first establishing module is used for establishing a transfer interface according to a transfer method corresponding to a preset transfer service type;
the second creation module is used for receiving a transfer instruction and creating a transfer type object corresponding to the transfer service type of the transfer instruction by adopting a spring frame factory mode;
the execution module is used for acquiring a corresponding transfer interface according to the transfer service type of the transfer instruction, calling the transfer interface through the transfer type object to execute the transfer instruction, and outputting a result of executing the transfer instruction;
the system also comprises a third creating module, wherein the third creating module is used for creating a dependent object corresponding to the preset transfer service type and storing the dependent object in a spring container;
the first creation module is specifically used for defining a transfer realization class according to a transfer method corresponding to a preset transfer service type and creating a transfer interface by adopting the transfer realization class;
the second creation module includes the following units:
the matching unit is used for receiving a transfer instruction, matching the transfer service type of the transfer instruction with a preset transfer service type and acquiring a corresponding dependence object;
and the creating unit is used for instantiating the dependency object by adopting a spring frame factory mode and generating a transfer type object corresponding to the transfer service type of the transfer instruction.
5. A system for implementing transfer service based on factory model as recited in claim 4, wherein the preset transfer service types include a transfer amount acquisition service, a transfer list acquisition service combined according to the account book, an information inquiry service, a short message sending service, a transfer account pre-storage verification service and a quota verification service.
6. A system for enabling transfer services based on a factory model as recited in claim 4, wherein the transfer type objects include a balance service type object, a fee atom type object, a user type object, and an agent type object.
CN201710390456.7A 2017-05-27 2017-05-27 Method and system for realizing transfer service based on factory mode Active CN107291455B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710390456.7A CN107291455B (en) 2017-05-27 2017-05-27 Method and system for realizing transfer service based on factory mode

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710390456.7A CN107291455B (en) 2017-05-27 2017-05-27 Method and system for realizing transfer service based on factory mode

Publications (2)

Publication Number Publication Date
CN107291455A CN107291455A (en) 2017-10-24
CN107291455B true CN107291455B (en) 2020-09-15

Family

ID=60094768

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710390456.7A Active CN107291455B (en) 2017-05-27 2017-05-27 Method and system for realizing transfer service based on factory mode

Country Status (1)

Country Link
CN (1) CN107291455B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111343221A (en) * 2018-12-18 2020-06-26 北京奇虎科技有限公司 Service processing method and device under command mode based on universal interface framework

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7195153B1 (en) * 1999-12-03 2007-03-27 Diebold, Incorporated ATM with user interfaces at different heights
CN102043616A (en) * 2009-10-22 2011-05-04 上海杉达学院 Factory pattern-based information system architecture and architecture method
CN104123135A (en) * 2014-07-04 2014-10-29 北京思特奇信息技术股份有限公司 Method and device for unifying background interfaces
CN105430070A (en) * 2015-11-10 2016-03-23 中国建设银行股份有限公司 Message sending method and device

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7195153B1 (en) * 1999-12-03 2007-03-27 Diebold, Incorporated ATM with user interfaces at different heights
CN102043616A (en) * 2009-10-22 2011-05-04 上海杉达学院 Factory pattern-based information system architecture and architecture method
CN104123135A (en) * 2014-07-04 2014-10-29 北京思特奇信息技术股份有限公司 Method and device for unifying background interfaces
CN105430070A (en) * 2015-11-10 2016-03-23 中国建设银行股份有限公司 Message sending method and device

Also Published As

Publication number Publication date
CN107291455A (en) 2017-10-24

Similar Documents

Publication Publication Date Title
WO2020181599A1 (en) Model application method and system, and model management method and server
CN104216912A (en) Method and device for achieving non-intrusive service form workflow
CN111625738B (en) APP target page calling method, device, equipment and storage medium
US10185644B2 (en) Service implementation based debugger for service oriented architecture projects
CN106547567A (en) Interprocess communication system and its implementation under multi-service in a kind of Android system
CN105761007B (en) Auxiliary method and system for information management software design
CN103530097A (en) Implement method and device of module crossing middleware platform
CN116541497A (en) Task type dialogue processing method, device, equipment and storage medium
CN112152913A (en) Service control method, device and system
Selic Tutorial: real-time object-oriented modeling (ROOM)
CN108154341A (en) United Dispatching platform and method of work based on data flow and workflow
CN107483412B (en) HTML5web worker migration method and system
CN103152433A (en) Distributed server side framework and use, interaction and request processing method thereof
CN102402455A (en) Method and device for calling dynamic link library (DLL)
US9851951B1 (en) Composable action flows
CN107291455B (en) Method and system for realizing transfer service based on factory mode
CN103051728B (en) Remote-procedure calling method
US11379201B2 (en) Wrapping method, registration method, device, and rendering apparatus
CN111178846B (en) Workflow file generation method, device, equipment and storage medium
JP2003500739A5 (en)
CN107479891B (en) MVC model-based data processing system and method
CN105260179A (en) Method for achieving flex and servlet interaction
CN115145652A (en) Method, device, equipment and medium for creating data processing task
CN109190969A (en) Weighing-appliance management-control method, system, weighing-appliance management middleware and medium
Mayer et al. The UML4SOA profile

Legal Events

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