CN111124705B - Service request processing method and device - Google Patents

Service request processing method and device Download PDF

Info

Publication number
CN111124705B
CN111124705B CN201911226467.7A CN201911226467A CN111124705B CN 111124705 B CN111124705 B CN 111124705B CN 201911226467 A CN201911226467 A CN 201911226467A CN 111124705 B CN111124705 B CN 111124705B
Authority
CN
China
Prior art keywords
service request
interface
service
address
preset
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
CN201911226467.7A
Other languages
Chinese (zh)
Other versions
CN111124705A (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.)
Unihub China Information Technology Co Ltd
Original Assignee
Unihub China 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 Unihub China Information Technology Co Ltd filed Critical Unihub China Information Technology Co Ltd
Priority to CN201911226467.7A priority Critical patent/CN111124705B/en
Publication of CN111124705A publication Critical patent/CN111124705A/en
Application granted granted Critical
Publication of CN111124705B publication Critical patent/CN111124705B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/547Remote procedure calls [RPC]; Web services
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/955Retrieval from the web using information identifiers, e.g. uniform resource locators [URL]
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2209/00Indexing scheme relating to G06F9/00
    • G06F2209/54Indexing scheme relating to G06F9/54
    • G06F2209/549Remote execution

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Databases & Information Systems (AREA)
  • Data Mining & Analysis (AREA)
  • Information Transfer Between Computers (AREA)

Abstract

The invention provides a service request processing method and a device, wherein the method comprises the following steps: receiving a service request, including a basic context URI address, a service request interface address and a service request interface version; and if the basic context URI address is in the preset basic context URI address set range and the service request interface address and the service request interface version are in the preset service request interface set range, calling the service interface to carry out service logic processing when the basic context URI address and the service request interface address correspond to the same service interface. The method realizes the service call by using the interface address of the shortened API interface system, and can call the service interface to perform service logic processing only under the condition that multiple verification conditions are met, thereby improving the access security of the service interface.

Description

Service request processing method and device
Technical Field
The present invention relates to the field of computer technologies, and in particular, to a service request processing method and apparatus.
Background
Currently, most of the API interface addresses are in the form of: api/v 1/subsystem name/sub-module name/method name. When a service interface is requested, a plurality of parameters are added behind the URI, so that the length of the interface address is too long, the security of the service request is low, and URI identification during service request processing is not facilitated.
Disclosure of Invention
The embodiment of the invention provides a service request processing method, which is used for realizing service call by using a shortened API (application program interface) address and improving the safety of interface access, and comprises the following steps:
receiving a service request, wherein the service request comprises a basic context URI address, a service request interface address and a service request interface version;
if the basic context URI address is within a preset basic context URI address set range and the service request interface address and the service request interface version are within a preset service request interface set range, then:
when the basic context URI address and the service request interface address correspond to the same service interface, calling the service interface to carry out service logic processing;
the preset service request interface set records the corresponding relation between the preset service request interface address and the preset service request interface version.
The embodiment of the invention also provides a service request processing device, which is used for realizing service call by using the shortened API interface address and improving the safety of interface access, and comprises the following components:
the request receiving module is used for receiving a service request, wherein the service request comprises a basic context URI address, a service request interface address and a service request interface version;
the service processing module is configured to, if the basic context URI address is within a preset basic context URI address set range and the service request interface address and the service request interface version are within a preset service request interface set range,:
when the basic context URI address and the service request interface address correspond to the same service interface, calling the service interface to carry out service logic processing;
the preset service request interface set records the corresponding relation between the preset service request interface address and the preset service request interface version.
The embodiment of the invention also provides a computer device which comprises a memory, a processor and a computer program stored on the memory and capable of running on the processor, wherein the processor realizes the service request processing method when executing the computer program.
The embodiment of the invention also provides a computer readable storage medium storing a computer program for executing the service request processing method.
In the embodiment of the invention, a service request is received, wherein the service request comprises a basic context URI address, a service request interface address and a service request interface version; if the basic context URI address is within the preset basic context URI address set range and the service request interface address and the service request interface version are within the preset service request interface set range, then: when the basic context URI address and the business request interface address correspond to the same business interface, calling the business interface to carry out business logic processing; wherein, the preset service request interface set records the corresponding relation between the preset service request interface address and the preset service request interface version; the interface address of the shortened API interface system can realize service logic processing by utilizing the corresponding relation between the basic context URI address and the service interface and the corresponding relation between the service request interface address and the service interface hidden in the http header without adding a plurality of parameters behind the basic context URI address, and compared with the technical proposal that a plurality of parameters are added behind the URI in the prior art, the interface address of the API interface system can be shortened; the service calling is realized by utilizing the interface address of the shortened API interface system, and the service interface can be called to carry out service logic processing only under the condition that multiple verification conditions are met, so that the access safety of the service interface is improved.
Drawings
In order to more clearly illustrate the technical solutions of the embodiments of the present invention, the drawings required for the description of the embodiments will be briefly described below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and other drawings may be obtained according to these drawings without inventive effort for a person skilled in the art.
Fig. 1 is a flow chart of a service request processing method in an embodiment of the invention.
Fig. 2 is a flow chart of a service request processing method according to an embodiment of the invention.
Fig. 3 is a flowchart of a service request processing method according to another embodiment of the present invention.
Fig. 4 is a flowchart of a service request processing method according to another embodiment of the present invention.
Fig. 5 is a block diagram of a service request processing device according to an embodiment of the present invention.
Fig. 6 is a block diagram illustrating a service request processing apparatus according to an embodiment of the present invention.
Fig. 7 (a) and fig. 7 (b) are block diagrams illustrating a service request processing apparatus according to another embodiment of the present invention.
Fig. 8 (a) and fig. 8 (b) are block diagrams illustrating a service request processing apparatus according to still another embodiment of the present invention.
Detailed Description
The following description of the embodiments of the present invention will be made clearly and completely with reference to the accompanying drawings, in which it is apparent that the embodiments described are only some embodiments of the present invention, but not all embodiments. All other embodiments, which can be made by those skilled in the art based on the embodiments of the invention without making any inventive effort, are intended to be within the scope of the invention.
In order to solve the problem of low security of a service request caused by an excessively long API interface address, an embodiment of the present invention provides a service request processing method, configured to implement service call by using a shortened API interface address, and improve security of interface access, as shown in fig. 1, where the method includes:
step 101: receiving a service request, including a basic context URI address, a service request interface address and a service request interface version;
step 102: if the basic context URI address is within the preset basic context URI address set range and the service request interface address and the service request interface version are within the preset service request interface set range, then:
step 103: when the basic context URI address and the business request interface address correspond to the same business interface, calling the business interface to carry out business logic processing;
the preset service request interface set records the corresponding relation between the preset service request interface address and the preset service request interface version.
As can be seen from fig. 1, by receiving a service request, including a base context URI address, a service request interface address, and a service request interface version; if the basic context URI address is in the preset basic context URI address set range and the service request interface address and the service request interface version are in the preset service request interface set range, calling the service interface to perform service logic processing when the basic context URI address and the service request interface address correspond to the same service interface; the interface address of the shortened API interface system can realize service logic processing by utilizing the corresponding relation between the basic context URI address and the service interface and the corresponding relation between the service request interface address and the service interface hidden in the http header without adding a plurality of parameters behind the basic context URI address, and compared with the technical proposal that a plurality of parameters are added behind the URI in the prior art, the interface address of the API interface system can be shortened; the service calling is realized by utilizing the interface address of the shortened API interface system, and the service interface can be called to carry out service logic processing only under the condition that multiple verification conditions are met, so that the access safety of the service interface is improved.
In specific implementation, a service request is first received, including a service request interface address and a service request interface version, and a basic context URI address. The service request interface address and the service request interface version are placed on an http request head of the service request, and only the basic context URI address is displayed outwards. For example, the API interface addresses in the prior art are, for example: http:// xxxx.com/api/device/v 1/subsystem name/sub-module name/method name, in this example, the service request interface address is the subsystem name/sub-module name/method name, and the basic context URI address is xxxx.com/api/device/v1, then in the embodiment of the present invention, the service request is externally displayed as http:// xx.com/api/device/v1, and the specific service request interface address and the service request interface version are placed on the http request header of the service request.
After receiving the service request, judging whether the basic context URI address is in a preset basic context URI address set range, and if the basic context URI address is in the preset basic context URI address set range, judging whether the service request interface address and the service request interface version are in the preset service request interface set range. When the basic context URI address is in the preset basic context URI address set range and the service request interface address and the service request interface version are in the preset service request interface set range, then:
and when the basic context URI address and the service request interface address correspond to the same service interface, calling the service interface to carry out service logic processing.
The preset service request interface set records the corresponding relation between the preset service request interface address and the preset service request interface version.
In a specific embodiment, as shown in fig. 2, a service request processing method is further provided, and on the basis of the one shown in fig. 1, the method further includes:
step 201: reading a configuration file to obtain a preset basic context URI address set;
step 202: storing a preset basic context URI address set into a Servletcontext module of the Spring framework;
step 203: scanning rest service interfaces, and acquiring preset service request interface addresses, preset service request interface versions and corresponding relations between the preset service request interface addresses and the preset service request interface versions;
step 204: storing the preset service request interface address, the preset service request interface version and the corresponding relation between the preset service request interface address and the preset service request interface version into a preset service request interface set.
In a specific embodiment, the set of preset basic context URI addresses may be, for example, a set of basic context URI addresses that can be provided by the rest service interface, or a set of preset basic context URI addresses that can pass verification according to a verification requirement.
Wherein the Spring frame is a lightweight control inversion (IoC) and tangential plane (AOP) facing container frame, and is an open source frame. The Servletcontext module is one of the main modules of the Spring framework, expands the beanfactor concept in the core container, and increases support for internationalization (I18N) messages, event propagation, and authentication. The rest service interface is a rest (representational statetransfer ) software architecture style adopted by the service interface.
In another embodiment, the service request processing method shown in fig. 3 further includes, on the basis of the judgment in fig. 1 or fig. 2:
step 301: determining a first service interface corresponding to the basic context URI address according to the first mapping relation set; the first mapping relation set records the corresponding relation between the basic context URI address and the business interface;
step 302: determining a second service interface corresponding to the service request interface address according to the second mapping relation set; the second mapping relation set records the corresponding relation between the service request interface address and the service interface;
step 303: checking whether the first service interface and the second service interface are the same service interface.
In still another embodiment, as shown in fig. 4, a service request processing method is further provided, and based on fig. 3, the method further includes:
step 401: reading a configuration file, acquiring the corresponding relation between the basic context URI address and the service interface, and storing the corresponding relation between the basic context URI address and the service interface into a first mapping relation set;
step 402: scanning rest service interfaces, acquiring the corresponding relation between the service request interface addresses and the service interfaces, and storing the corresponding relation between the service request interface addresses and the service interfaces into a second mapping relation set;
step 403: and storing the first mapping relation set and the second mapping relation set into a Handlermapping module of the Spring framework.
The handle Mapping module is a core component of the Spring MVC framework and is used for processing the Mapping relation between the request path and the controller, and in the specific embodiment of the invention, the service interface for verifying the address Mapping of the basic context URI and the service interface for verifying the address Mapping of the service request interface are the same service interface.
A specific example is given below to illustrate how the embodiments of the present invention perform service request processing. The embodiment is a program software system realized by applying the service request processing method.
When the software system is started, firstly, reading a configuration file to obtain a preset basic context URI address set; storing a preset basic context URI address set into a Servletcontext module of the Spring framework; and reading the configuration file, acquiring the corresponding relation between the basic context URI address and the service interface, and storing the corresponding relation between the basic context URI address and the service interface into a first mapping relation set.
Scanning rest service interfaces, and acquiring preset service request interface addresses, preset service request interface versions and corresponding relations between the preset service request interface addresses and the preset service request interface versions; storing the preset service request interface address, the preset service request interface version and the corresponding relation between the preset service request interface address and the preset service request interface version into a preset service request interface set. Scanning rest service interfaces, acquiring the corresponding relation between the service request interface addresses and the service interfaces, and storing the corresponding relation between the service request interface addresses and the service interfaces into a second mapping relation set.
And then, identifying the first Mapping relation set and the second Mapping relation set as a Handler, and storing the first Mapping relation set and the second Mapping relation set into a Handler Mapping module of the Spring framework.
And a Filter in the software system processes the received service request, wherein the service request comprises a basic context URI address, a service request interface address and a service request interface version in an http request header, verifies whether the basic context URI address is in a preset basic context URI address set range, verifies whether the service request interface address and the service request interface version are in the preset service request interface set range, and directly and abnormally exits if verification fails.
If the Filter verification is successful, after passing through, a handle Mapping module expanded by a Spring framework processes the service request, a first service interface corresponding to the URI address of the basic context is determined according to a first Mapping relation set, a second service interface corresponding to the address of the service request interface is determined according to a second Mapping relation set, whether the first service interface and the second service interface are the same service interface is checked, and if the check fails, the operation is directly and abnormally exited.
And if the Handler Mapping module is successfully checked, calling the service interface to carry out service logic processing.
Based on the same inventive concept, the embodiment of the present invention further provides a service request processing device, and because the principle of the problem solved by the service request processing device is similar to that of the service request processing method, the implementation of the service request processing device can refer to the implementation of the service request processing method, and the repetition is omitted, and the specific structure is shown in fig. 5:
a request receiving module 501, configured to receive a service request, including a basic context URI address, a service request interface address, and a service request interface version;
the service processing module 502 is configured to, if the basic context URI address is within a preset basic context URI address set range and the service request interface address and the service request interface version are within a preset service request interface set range,:
when the basic context URI address and the business request interface address correspond to the same business interface, calling the business interface to carry out business logic processing;
the preset service request interface set records the corresponding relation between the preset service request interface address and the preset service request interface version. In the specific implementation, the service request processing apparatus shown in fig. 6 further includes, on the basis of fig. 5: a preset set setting module 601, configured to: reading a configuration file to obtain a preset basic context URI address set;
storing a preset basic context URI address set into a Servletcontext module of the Spring framework;
scanning rest service interfaces, and acquiring preset service request interface addresses, preset service request interface versions and corresponding relations between the preset service request interface addresses and the preset service request interface versions;
storing the preset service request interface address, the preset service request interface version and the corresponding relation between the preset service request interface address and the preset service request interface version into a preset service request interface set.
In another embodiment, as shown in fig. 7 (a) and fig. 7 (b), the service request processing apparatus further includes, on the basis of fig. 5 or fig. 6: a service interface checking module 701, configured to:
determining a first service interface corresponding to the basic context URI address according to the first mapping relation set; the first mapping relation set records the corresponding relation between the basic context URI address and the business interface;
determining a second service interface corresponding to the service request interface address according to the second mapping relation set; the second mapping relation set records the corresponding relation between the service request interface address and the service interface;
checking whether the first service interface and the second service interface are the same service interface.
In yet another embodiment, as shown in fig. 8 (a) and fig. 8 (b), the method further includes, based on fig. 7 (a) and fig. 7 (b), respectively: the mapping relation set setting module 801 is configured to:
reading a configuration file, acquiring the corresponding relation between the basic context URI address and the service interface, and storing the corresponding relation between the basic context URI address and the service interface into a first mapping relation set;
scanning rest service interfaces, acquiring the corresponding relation between the service request interface addresses and the service interfaces, and storing the corresponding relation between the service request interface addresses and the service interfaces into a second mapping relation set;
and storing the first Mapping relation set and the second Mapping relation set into a handle Mapping module of the Spring framework. The embodiment of the invention also provides a computer device which comprises a memory, a processor and a computer program stored on the memory and capable of running on the processor, wherein the processor realizes the service request processing method when executing the computer program.
The embodiment of the invention also provides a computer readable storage medium which stores a computer program for executing the service request processing method.
In summary, in the embodiment of the present invention, the service request is received, which includes the basic context URI address, the service request interface address, and the service request interface version; if the basic context URI address is within the preset basic context URI address set range and the service request interface address and the service request interface version are within the preset service request interface set range, then: when the basic context URI address and the business request interface address correspond to the same business interface, calling the business interface to carry out business logic processing; when the API interface system of the service request processing method is used for displaying the API interface address externally, only the basic context URI address is displayed, and the specific service interface address and the specific service interface version are stored on the http request header, so that the interface address of the API interface system is shortened, and the identification difficulty and the access potential safety hazard caused by overlong interface address of the API interface system are avoided. The interface address of the shortened API interface system can realize service logic processing by utilizing the corresponding relation between the basic context URI address and the service interface and the corresponding relation between the service request interface address and the service interface hidden in the http header without adding a plurality of parameters behind the basic context URI address, and compared with the technical proposal that a plurality of parameters are added behind the URI in the prior art, the interface address of the API interface system can be shortened; the service calling is realized by utilizing the interface address of the shortened API interface system, and the service interface can be called to carry out service logic processing only under the condition that multiple verification conditions are met, so that the access safety of the service interface is improved.
It will be apparent to those skilled in the art that embodiments of the present invention may be provided as a method, apparatus, 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 and computer program products according to embodiments of the invention. It will be understood that each flow and/or block of the flowchart illustrations and/or block diagrams, and combinations of flows and/or blocks in the flowchart illustrations 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 means 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 instruction means 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 description is only of the preferred embodiments of the present invention and is not intended to limit the present invention, and various modifications and variations can be made to the embodiments of the present invention by those skilled in the art. Any modification, equivalent replacement, improvement, etc. made within the spirit and principle of the present invention should be included in the protection scope of the present invention.

Claims (8)

1. A service request processing method, comprising:
receiving a service request, wherein the service request comprises a basic context URI address, a service request interface address and a service request interface version;
if the basic context URI address is within a preset basic context URI address set range and the service request interface address and the service request interface version are within a preset service request interface set range, then:
when the basic context URI address and the service request interface address correspond to the same service interface, calling the service interface to carry out service logic processing;
wherein, the preset service request interface set records the corresponding relation between the preset service request interface address and the preset service request interface version;
further comprises:
reading a configuration file to obtain a preset basic context URI address set;
storing the preset basic context URI address set into a Servletcontext module of a Spring framework;
scanning rest service interfaces, and acquiring preset service request interface addresses, preset service request interface versions and corresponding relations between the preset service request interface addresses and the preset service request interface versions;
and storing the preset service request interface address, the preset service request interface version and the corresponding relation between the preset service request interface address and the preset service request interface version into a preset service request interface set.
2. The method as recited in claim 1, further comprising:
determining a first service interface corresponding to the basic context URI address according to a first mapping relation set; the first mapping relation set records the corresponding relation between the basic context URI address and the business interface;
determining a second service interface corresponding to the service request interface address according to a second mapping relation set; the second mapping relation set records the corresponding relation between the service request interface address and the service interface;
checking whether the first service interface and the second service interface are the same service interface.
3. The method as recited in claim 2, further comprising:
reading a configuration file, obtaining the corresponding relation between a basic context URI address and a service interface, and storing the corresponding relation between the basic context URI address and the service interface into a first mapping relation set;
scanning rest service interfaces, acquiring the corresponding relation between service request interface addresses and the service interfaces, and storing the corresponding relation between the service request interface addresses and the service interfaces into a second mapping relation set;
and storing the first Mapping relation set and the second Mapping relation set into a handle Mapping module of the Spring framework.
4. A service request processing apparatus, comprising:
the request receiving module is used for receiving a service request, wherein the service request comprises a basic context URI address, a service request interface address and a service request interface version;
the service processing module is configured to, if the basic context URI address is within a preset basic context URI address set range and the service request interface address and the service request interface version are within a preset service request interface set range,: when the basic context URI address and the service request interface address correspond to the same service interface, calling the service interface to carry out service logic processing;
wherein, the preset service request interface set records the corresponding relation between the preset service request interface address and the preset service request interface version;
further comprises: a preset set setting module, configured to:
reading a configuration file to obtain a preset basic context URI address set;
storing the preset basic context URI address set into a Servletcontext module of a Spring framework;
scanning rest service interfaces, and acquiring preset service request interface addresses, preset service request interface versions and corresponding relations between the preset service request interface addresses and the preset service request interface versions;
and storing the preset service request interface address, the preset service request interface version and the corresponding relation between the preset service request interface address and the preset service request interface version into a preset service request interface set.
5. The apparatus as recited in claim 4, further comprising: the service interface checking module is used for:
determining a first service interface corresponding to the basic context URI address according to a first mapping relation set; the first mapping relation set records the corresponding relation between the basic context URI address and the business interface;
determining a second service interface corresponding to the service request interface address according to a second mapping relation set; the second mapping relation set records the corresponding relation between the service request interface address and the service interface;
checking whether the first service interface and the second service interface are the same service interface.
6. The apparatus as recited in claim 5, further comprising: the mapping relation set setting module is used for:
reading a configuration file, obtaining the corresponding relation between a basic context URI address and a service interface, and storing the corresponding relation between the basic context URI address and the service interface into a first mapping relation set;
scanning rest service interfaces, acquiring the corresponding relation between service request interface addresses and the service interfaces, and storing the corresponding relation between the service request interface addresses and the service interfaces into a second mapping relation set;
and storing the first Mapping relation set and the second Mapping relation set into a handle Mapping module of the Spring framework.
7. A computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, characterized in that the processor implements the method of any of claims 1 to 3 when executing the computer program.
8. 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 3.
CN201911226467.7A 2019-12-04 2019-12-04 Service request processing method and device Active CN111124705B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911226467.7A CN111124705B (en) 2019-12-04 2019-12-04 Service request processing method and device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911226467.7A CN111124705B (en) 2019-12-04 2019-12-04 Service request processing method and device

Publications (2)

Publication Number Publication Date
CN111124705A CN111124705A (en) 2020-05-08
CN111124705B true CN111124705B (en) 2024-03-12

Family

ID=70497483

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911226467.7A Active CN111124705B (en) 2019-12-04 2019-12-04 Service request processing method and device

Country Status (1)

Country Link
CN (1) CN111124705B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113553519A (en) * 2021-06-23 2021-10-26 深圳平安智汇企业信息管理有限公司 Interface address display method and device, computer equipment and storage medium

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102185900A (en) * 2011-04-18 2011-09-14 北京新媒传信科技有限公司 Application service platform system and method for developing application services
CN109150805A (en) * 2017-06-19 2019-01-04 亿阳安全技术有限公司 The method for managing security and system of application programming interface
WO2019037775A1 (en) * 2017-08-24 2019-02-28 新华三信息安全技术有限公司 Issuance of service configuration file

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102185900A (en) * 2011-04-18 2011-09-14 北京新媒传信科技有限公司 Application service platform system and method for developing application services
CN109150805A (en) * 2017-06-19 2019-01-04 亿阳安全技术有限公司 The method for managing security and system of application programming interface
WO2019037775A1 (en) * 2017-08-24 2019-02-28 新华三信息安全技术有限公司 Issuance of service configuration file

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
丁建立 ; 倪兆阳 ; 田丰 ; 王静 ; .面向复杂民航业务的中间件架构设计与实现.计算机工程与设计.2016,(05),全文. *
赖秋菊 ; 徐政 ; 陈东 ; 吴方劼 ; 薛英林.基于WEB服务的高压直流输电基础设计软件的架构.中国电力.2018,(02),全文. *

Also Published As

Publication number Publication date
CN111124705A (en) 2020-05-08

Similar Documents

Publication Publication Date Title
US9635098B2 (en) Open platform, open platform access system, storage medium, and method for allowing third party application to access open platform
US9514034B1 (en) Ordered test execution to enable faster feedback
CN112905459B (en) Service interface testing method and device, electronic equipment and storage medium
CN109376088B (en) Automatic test system and automatic test method
US20200174818A1 (en) Virtual machine management
CN112131126B (en) Switching method and device of test environment
CN107908553B (en) Association testing method, application server and computer readable storage medium
WO2019237710A1 (en) Method, device and equipment for recognizing video cards of gpu servers, and medium
US20150227733A1 (en) Automatic login system and automatic login method
CN109684125B (en) Method, device, equipment and storage medium for repairing DDR physical damage
US8938490B2 (en) System and method for accessing mainframe system automation from a process automation application
CN104753909A (en) Updated information authentication method, device and system
CN111124705B (en) Service request processing method and device
CN113935010A (en) Mobile banking login method and device based on block chain and 5G message
CN111292088A (en) Block chain-based multi-level authorization method, system, equipment and storage medium
CN113239119A (en) Data synchronization method, device and storage medium
CN108429724B (en) Method and device for selecting encryption suite in handshake processing process
CN108848183B (en) Login method and device for simulation user
CN113572826A (en) Equipment information binding method and system and electronic equipment
CN107547518B (en) Method and device for hiding front-end password
CN111858379A (en) Application testing method and device
CN107741872B (en) Auditing method and device for virtual machine identification and virtual machine identification system
CN113704130B (en) Test method, host, virtual test platform and storage medium
CN112988582A (en) Application program testing method and device and storage medium
CN113645263B (en) Account binding method and device

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