CN110659017B - External request processing method and related device - Google Patents

External request processing method and related device Download PDF

Info

Publication number
CN110659017B
CN110659017B CN201910887858.7A CN201910887858A CN110659017B CN 110659017 B CN110659017 B CN 110659017B CN 201910887858 A CN201910887858 A CN 201910887858A CN 110659017 B CN110659017 B CN 110659017B
Authority
CN
China
Prior art keywords
interface
external
class
preset interface
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
CN201910887858.7A
Other languages
Chinese (zh)
Other versions
CN110659017A (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.)
Shanghai Kejia Information Technology Co ltd
Original Assignee
Shanghai Kejia 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 Shanghai Kejia Information Technology Co ltd filed Critical Shanghai Kejia Information Technology Co ltd
Priority to CN201910887858.7A priority Critical patent/CN110659017B/en
Publication of CN110659017A publication Critical patent/CN110659017A/en
Application granted granted Critical
Publication of CN110659017B publication Critical patent/CN110659017B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/20Software design
    • G06F8/24Object-oriented

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computer And Data Communications (AREA)

Abstract

The invention discloses an external request processing method and a related device, under the condition of inheriting a general interface class, only an interface corresponding to the requester is opened for an external requester instead of opening all interfaces to the outside, so that the external requester firstly receives request information transmitted by the external requester through a preset interface corresponding to the external requester, then invokes an implementation method corresponding to the preset interface to process the request information, and returns a processing result to the external requester. Therefore, only the external requesting party has a targeted open interface, but not all interfaces are opened to all external requesting parties, so that any interface cannot be called by the external requesting party without the open interface, and the external requesting party with the open interface can only call the corresponding interface, thereby avoiding illegal calling of the interfaces and improving the safety. In addition, the external requesting party is more friendly because the external requesting party can only call the corresponding own interface without selecting among all interfaces.

Description

External request processing method and related device
Technical Field
The present invention relates to request processing technology, and more particularly, to an external request processing method, system, apparatus, and computer readable storage medium.
Background
Spring is a design layer framework of open source codes, which solves the problem of loose coupling between a business logic layer and other layers, so that the Spring applies interface-oriented programming ideas throughout the whole system. Spring is a lightweight Java development framework that arose in 2003, created by Rod Johnson. In brief, spring is a hierarchical Java SE/EE full-stack lightweight open source framework.
In Java development under a traditional Spring framework, a plurality of APIs are defined in a controller class for external access, and when an external request needs to access a certain API, all APIs of the controller class are opened to a requester, so that the external requester can call the required API to complete the access.
However, the current way of opening APIs suffers from security problems and is not friendly to external requesters.
Therefore, how to avoid the security problem caused by the API opening is a problem that needs to be solved by those skilled in the art.
Disclosure of Invention
The invention aims to provide an external request processing method, an external request processing system, an external request processing device and a computer readable storage medium, so as to solve the problem of safety caused by avoiding the opening of an API.
In order to achieve the above purpose, the embodiment of the present invention provides the following technical solutions:
an external request processing method, comprising:
receiving request information transmitted by an external requesting party by using a preset interface; the preset interface is an interface which is opened for the external requesting party in advance, and inherits a general interface class;
processing the request information by using an implementation method corresponding to the preset interface to obtain a processing result;
and returning the processing result to the external requester.
The receiving the request information transmitted by the external requesting party by using the preset interface includes:
and receiving request information transmitted by an external requester through a preset interface by using an HTTP protocol.
The method for processing the request information by using the implementation method corresponding to the preset interface includes:
and processing the request information by using an implementation method corresponding to the preset interface and an implementation method of an interface inherited by the implementation method.
Before receiving the request information transmitted by the external requesting party by using the preset interface, the method further comprises the following steps:
detecting whether a method in a service implementation class realizes an interface method in a parent class of the preset interface class or not;
if yes, opening the preset interface so that an external request can transmit request information by using the preset interface;
if not, detecting whether the subclass of the class where the preset method is located realizes the interface method in the parent class of the preset interface class or not;
if yes, opening the preset interface so that an external request can transmit request information by using the preset interface.
The application also provides an external request processing system, comprising:
the receiving module is used for receiving request information transmitted by an external requesting party through a preset interface; the preset interface is an interface which is opened for the external requesting party in advance, and inherits a general interface class;
the processing module is used for processing the request information by using an implementation method corresponding to the preset interface to obtain a processing result;
and the return module is used for returning the processing result to the external requester.
The receiving module is specifically configured to receive, by using an HTTP protocol, request information transmitted by an external requester using a preset interface.
The processing module is specifically configured to process the request information by using an implementation method corresponding to the preset interface and an implementation method of the interface inherited by the implementation method.
Wherein, still include:
the first detection module is used for detecting whether the method in the service implementation class realizes the interface method in the parent class of the interface class or not;
a first opening module, configured to open the preset interface when a method in the service implementation class has implemented an interface method in a parent class of the interface class, so that an external request uses the preset interface to transmit request information;
the second detection module is used for detecting whether the subclass of the class where the service implementation class is located realizes the interface method in the parent class of the preset interface class or not when the method in the service implementation class does not realize the interface method in the parent class of the interface class;
and the second opening module is used for opening the preset interface when the subclass of the service implementation class has realized the preset interface so that an external request can transmit request information by using the preset interface.
The application also provides an external request processing device, which comprises:
a memory for storing a computer program;
a processor for implementing the steps of the external request processing method when executing the computer program.
The present application also provides a computer readable storage medium having stored thereon a computer program which, when executed by a processor, implements the steps of the external request processing method as described.
As can be seen from the above solution, the method for processing an external request provided by the embodiment of the present invention includes: receiving request information transmitted by an external requesting party by using a preset interface; the preset interface is an interface which is opened for the external requesting party in advance; processing the request information by using an implementation method corresponding to the preset interface to obtain a processing result; and returning the processing result to the external requester.
Therefore, in the external request processing method provided by the embodiment of the application, under the condition that the universal interface class is inherited, only the interface corresponding to the requester is opened for the external requester instead of opening all interfaces to the outside, so that the external requester firstly receives the request information transmitted by the external requester through the preset interface corresponding to the external requester, then invokes the implementation method corresponding to the preset interface to process the request information, and returns the processing result to the external requester. Therefore, only the external requesting party has a targeted open interface, but not all interfaces are opened to all external requesting parties, so that any interface cannot be called by the external requesting party without the open interface, and the external requesting party with the open interface can only call the corresponding interface, thereby avoiding illegal calling of the interfaces and improving the safety. In addition, the external requesting party is more friendly because the external requesting party can only call the corresponding own interface without selecting among all interfaces. The application also provides an external request processing system, an external request processing device and a computer readable storage medium, and the technical effects can be achieved.
Drawings
In order to more clearly illustrate the embodiments of the invention or the technical solutions in the prior art, the drawings that are required in the embodiments or the description of the prior art will be briefly described, it being obvious that the drawings in the following description are only some embodiments of the invention, and that 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 an external request processing method according to an embodiment of the present invention;
FIG. 2 is a schematic diagram of an external request processing system according to an embodiment of the present invention;
fig. 3 is a schematic structural diagram of an external request processing device according to an 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.
The embodiment of the invention discloses a method, a system, a device and a computer readable storage medium for processing an external request, which are used for solving the problem of safety caused by avoiding the opening of an API.
Referring to fig. 1, an external request processing method provided by an embodiment of the present invention specifically includes:
s101, receiving request information transmitted by an external requesting party by using a preset interface; the preset interface is an interface which is opened for the external requesting party in advance, and inherits a general interface class.
Firstly, receiving request information transmitted by an external requesting party by utilizing a corresponding preset interface.
In this scheme, an open interface with pertinence for external requests, that is, an external requester, determines what interface needs to be called, only the interface needs to be called for its opening, and the interface inherits the generic interface class, and does not open APIs defined in all controller classes to the outside. It should be noted that the generic interface class is a group of interface classes including one or more generic interfaces. The general interface class comprises a method for realizing the requirements of various external requesters, and after a preset interface is opened for the external requesters, the request information of the external requesters can be processed through a corresponding method inherited by the preset interface.
Specifically, in the scheme, a Java Interface class (Interface) can be used to replace a life API of the controller class, and for different requirements of the logic layer on interfaces, the API Interface class required by the selective integration is opened to a corresponding external requester by the Interface inheriting the API Interface class, so that the Interface called by the external requester is the API Interface class corresponding to the external requester, and not all the API Interface classes.
In a preferred embodiment, the receiving the request information transmitted by the external requesting party through the preset interface includes:
and receiving request information transmitted by an external requester through a preset interface by using an HTTP protocol.
It should be noted that, most applications can use HTTP protocol to transmit data at present, and a small number of applications can use socket protocol, so that in order to make the application wider, the HTTP protocol is preferably supported in the present solution, and the HTTP protocol is used to receive the request information. Of course, socket protocols may also be utilized if desired.
In the latest version of the Spring Framework (5.1.0 RC2), there is no function supporting an open interface targeted to an external requester, so, corresponding to the Spring Framework, the present application provides a specific embodiment, before S101, further including:
detecting whether a method in a service implementation class realizes an interface method in a parent class of the preset interface class or not;
if yes, opening the preset interface so that an external request can transmit request information by using the preset interface;
if not, detecting whether the subclass of the class where the preset method is located realizes the interface method in the parent class of the preset interface class or not;
if yes, opening the preset interface so that an external request can transmit request information by using the preset interface.
In the existing Spring framework, the premise of opening a certain interface is that the interface method in the parent class of the interface class needs to be directly realized in the class of the service method. However, in this application, a case of indirectly implementing an interface by using a subclass may occur, so in this solution, if a method in a service implementation class implements an interface method in a parent class of the preset interface class, a corresponding preset interface will be opened, unlike the prior art, if a method in a service implementation class does not implement an interface method in a parent class of the preset interface class, whether a subclass of a class where the preset method is located implements an interface method in a parent class of the interface class is further detected, and if the subclass implements an interface method in a parent class of the preset interface class, the preset interface may also be opened.
S102, processing the request information by using an implementation method corresponding to the preset interface to obtain a processing result.
It should be noted that, the service layer is used to implement the logic of the interface, that is, the actual processing method is embodied in the service layer, and the implementation method of the service layer inherits the corresponding interface, so that the interface may have a logic method capable of processing the request.
Specifically, the request information is processed by using an implementation method corresponding to the preset interface, so that a processing result of the request is obtained.
It should be noted that, there may be an inherited relationship between interfaces, for example, one interface class with higher versatility is a creation interface class, where the interface is only logic for creating information, one interface class with lower versatility and higher pertinence is a creation student user interface class, and the other interface class with lower versatility and higher pertinence is a creation teacher user interface class, where both creation user classes need logic for creating information, so that both creation user interface classes may inherit the creation interface class.
Corresponding to different interface classes, corresponding realization methods are provided, and due to the existence of inheritance relationships, if other interfaces are inherited by the preset interfaces, the realization method of the inherited parent class interface is also required to be called to finish request processing during information processing. Therefore, in a specific embodiment, if the preset interface is an interface of the inheritance target interface, the processing the request information by using the implementation method corresponding to the preset interface includes:
and processing the request information by using an implementation method corresponding to the preset interface and an implementation method of an interface inherited by the implementation method.
The class is specifically used for creating a user, so that the class can inherit the creation interface class, multiplex the creation method of the creation interface class, and add a logic method for the user, thereby realizing the method for creating the user.
And S103, returning the processing result to the external requester.
Therefore, the external request processing method provided by the embodiment of the application only opens the interface corresponding to the requester for the external requester, instead of opening all interfaces to the outside, so that the external requester firstly receives the request information transmitted by the external requester through the preset interface, then invokes the implementation method corresponding to the preset interface to process the request information, and returns the processing result to the external requester. Therefore, only the external requesting party has a targeted open interface, but not all interfaces are opened to all external requesting parties, so that any interface cannot be called by the external requesting party without the open interface, and the external requesting party with the open interface can only call the corresponding interface, thereby avoiding illegal calling of the interfaces and improving the safety. In addition, the external requesting party is more friendly because the external requesting party can only call the corresponding own interface without selecting from all interfaces.
An external request processing system provided in the embodiments of the present application is described below, and an external request processing system described below and any of the above embodiments may be referred to with reference to each other.
Referring to fig. 2, an external request processing system provided in an embodiment of the present application specifically includes:
a receiving module 201, configured to receive request information transmitted by an external requester using a preset interface; the preset interface is an interface which is opened for the external requesting party in advance, and inherits a general interface class.
In a specific embodiment, the receiving module 201 is specifically configured to receive, using HTTP protocol, request information transmitted by an external requester using a preset interface.
And the processing module 202 is configured to process the request information by using an implementation method corresponding to the preset interface, so as to obtain a processing result.
In a specific embodiment, if the preset interface is an interface of the inheritance target interface, the processing module 202 is specifically configured to process the request information by using an implementation method corresponding to the preset interface and an implementation method of the interface inherited by the implementation method.
And the returning module 203 is configured to return the processing result to the external requester.
In a specific embodiment, the system further comprises:
the first detection module is used for detecting whether the method in the service implementation class realizes the interface method in the parent class of the interface class or not;
a first opening module, configured to open the preset interface when a method in the service implementation class has implemented an interface method in a parent class of the interface class, so that an external request uses the preset interface to transmit request information;
the second detection module is used for detecting whether the subclass of the class where the service implementation class is located realizes the interface method in the parent class of the preset interface class or not when the method in the service implementation class does not realize the interface method in the parent class of the interface class;
and the second opening module is used for opening the preset interface when the subclass of the service implementation class has realized the preset interface so that an external request can transmit request information by using the preset interface. An external request processing system of the present embodiment is configured to implement the foregoing external request processing method, so that the specific implementation in the external request processing system may be referred to as the foregoing example portions of the external request processing method, for example, the receiving module 201, the processing module 202, and the returning module 203, which are respectively configured to implement steps S101, S102, and S103 in the foregoing external request processing method, so that the specific implementation thereof may refer to the description of the corresponding examples of each portion, and will not be repeated herein.
An external request processing device provided in the embodiments of the present application is described below, and an external request processing device described below and any of the above embodiments may be referred to with each other.
Referring to fig. 3, an external request processing apparatus provided in an embodiment of the present application specifically includes:
a memory 100 for storing a computer program;
a processor 200 for implementing the steps of the external request processing method according to any of the embodiments described above when executing the computer program.
Specifically, the memory 100 includes a nonvolatile storage medium and an internal memory. The non-volatile storage medium stores an operating system and computer readable instructions, and the internal memory provides an environment for the operating system and the execution of the computer readable instructions in the non-volatile storage medium. The processor 200 provides computing and control capabilities for external request processing devices, and may implement the steps provided by any of the external request processing method embodiments described above.
The present application also provides a computer readable storage medium having stored thereon a computer program which, when executed by a processor, can implement the steps provided by the above embodiments. The storage medium may include: a usb disk, a removable hard disk, a random access memory (Random Access Memory, RAM), a magnetic disk, or an optical disk, or the like.
In the present specification, each embodiment is described in a progressive manner, and each embodiment is mainly described in a different point from other embodiments, and identical and similar parts between the embodiments are all enough to refer to each other.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present invention. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the invention. Thus, the present invention is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.

Claims (8)

1. An external request processing method, comprising:
receiving request information transmitted by an external requesting party by using a preset interface; the preset interface is an interface which is opened for the external requesting party in advance, and inherits a general interface class;
processing the request information by using an implementation method corresponding to the preset interface to obtain a processing result;
returning the processing result to the external requester;
before receiving the request information transmitted by the external requesting party by using the preset interface, the method further comprises the following steps:
detecting whether a method in a service implementation class realizes an interface method in a parent class of a preset interface class or not;
if yes, opening the preset interface so that an external request can transmit request information by using the preset interface;
if not, detecting whether the subclass of the class where the preset method is located realizes the interface method in the parent class of the preset interface class or not;
if yes, opening the preset interface so that an external request can transmit request information by using the preset interface.
2. The method of claim 1, wherein receiving the request information transmitted by the external requesting party using the preset interface comprises:
and receiving request information transmitted by an external requester through a preset interface by using an HTTP protocol.
3. The method of claim 1, wherein the processing the request information by using the implementation method corresponding to the preset interface if the preset interface is an interface of an inheritance target interface includes:
and processing the request information by using an implementation method corresponding to the preset interface and an implementation method of an interface inherited by the implementation method.
4. An external request processing system, comprising:
the receiving module is used for receiving request information transmitted by an external requesting party through a preset interface; the preset interface is an interface which is opened for the external requesting party in advance, and inherits a general interface class;
the processing module is used for processing the request information by using an implementation method corresponding to the preset interface to obtain a processing result;
the return module is used for returning the processing result to the external requester;
the system further comprises:
the first detection module is used for detecting whether the method in the service implementation class realizes the interface method in the parent class of the interface class or not;
a first opening module, configured to open the preset interface when a method in the service implementation class has implemented an interface method in a parent class of the interface class, so that an external request uses the preset interface to transmit request information;
the second detection module is used for detecting whether the subclass of the class where the service implementation class is located realizes the interface method in the parent class of the preset interface class or not when the method in the service implementation class does not realize the interface method in the parent class of the interface class;
and the second opening module is used for opening the preset interface when the subclass of the service implementation class has realized the preset interface so that an external request can transmit request information by using the preset interface.
5. The system according to claim 4, wherein the receiving module is specifically configured to receive, using HTTP protocol, the request information transmitted by the external requesting party using the preset interface.
6. The system according to claim 4, wherein the preset interface is an interface of an inheritance target interface, and the processing module is specifically configured to process the request information by using an implementation method corresponding to the preset interface and an implementation method of the interface inherited by the implementation method.
7. An external request processing apparatus, comprising:
a memory for storing a computer program;
a processor for implementing the steps of the external request processing method according to any one of claims 1 to 3 when executing said computer program.
8. A computer readable storage medium, characterized in that the computer readable storage medium has stored thereon a computer program which, when executed by a processor, implements the steps of the external request processing method according to any of claims 1 to 3.
CN201910887858.7A 2019-09-19 2019-09-19 External request processing method and related device Active CN110659017B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201910887858.7A CN110659017B (en) 2019-09-19 2019-09-19 External request processing method and related device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201910887858.7A CN110659017B (en) 2019-09-19 2019-09-19 External request processing method and related device

Publications (2)

Publication Number Publication Date
CN110659017A CN110659017A (en) 2020-01-07
CN110659017B true CN110659017B (en) 2024-03-29

Family

ID=69037293

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201910887858.7A Active CN110659017B (en) 2019-09-19 2019-09-19 External request processing method and related device

Country Status (1)

Country Link
CN (1) CN110659017B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114844875B (en) * 2022-04-21 2024-02-06 深圳依时货拉拉科技有限公司 Application programming interface API management method, device, equipment and medium

Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101882066A (en) * 2009-05-08 2010-11-10 上海科泰世纪科技有限公司 Realization method for creating concrete class
CN102799424A (en) * 2012-06-12 2012-11-28 上海雷腾软件有限公司 Interface architecture of agile efficient layering server side
CN103176789A (en) * 2011-12-26 2013-06-26 腾讯科技(深圳)有限公司 Method and system used for realizing function extension of open platform
CN104717179A (en) * 2013-12-13 2015-06-17 中国移动通信集团河南有限公司 Communication service processing method and device
CN105975346A (en) * 2016-05-25 2016-09-28 大唐网络有限公司 Method, device and system for scheduling thread resources
CN107038057A (en) * 2016-10-31 2017-08-11 东软集团股份有限公司 Create the method and device of class
CN108011877A (en) * 2017-11-29 2018-05-08 北京锐安科技有限公司 IP address acquisition methods and device based on OSGI
CN108021461A (en) * 2017-12-06 2018-05-11 福建中金在线信息科技有限公司 Lift the method and device of social circle's data processing performance
CN108234653A (en) * 2018-01-03 2018-06-29 马上消费金融股份有限公司 A kind of method and device of processing business request
CN108255615A (en) * 2017-11-30 2018-07-06 平安科技(深圳)有限公司 Across language call method, server and storage medium
CN108984236A (en) * 2018-08-08 2018-12-11 郑州云海信息技术有限公司 A kind of implementation method and equipment of virtual management platform
CN110209569A (en) * 2018-05-10 2019-09-06 腾讯科技(深圳)有限公司 Interface test method, interface test device and storage medium

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10574724B2 (en) * 2017-01-06 2020-02-25 Western Digital Technologies, Inc. Automatic discovery of management nodes and generation of CLI using HA module

Patent Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101882066A (en) * 2009-05-08 2010-11-10 上海科泰世纪科技有限公司 Realization method for creating concrete class
CN103176789A (en) * 2011-12-26 2013-06-26 腾讯科技(深圳)有限公司 Method and system used for realizing function extension of open platform
CN102799424A (en) * 2012-06-12 2012-11-28 上海雷腾软件有限公司 Interface architecture of agile efficient layering server side
CN104717179A (en) * 2013-12-13 2015-06-17 中国移动通信集团河南有限公司 Communication service processing method and device
CN105975346A (en) * 2016-05-25 2016-09-28 大唐网络有限公司 Method, device and system for scheduling thread resources
CN107038057A (en) * 2016-10-31 2017-08-11 东软集团股份有限公司 Create the method and device of class
CN108011877A (en) * 2017-11-29 2018-05-08 北京锐安科技有限公司 IP address acquisition methods and device based on OSGI
CN108255615A (en) * 2017-11-30 2018-07-06 平安科技(深圳)有限公司 Across language call method, server and storage medium
CN108021461A (en) * 2017-12-06 2018-05-11 福建中金在线信息科技有限公司 Lift the method and device of social circle's data processing performance
CN108234653A (en) * 2018-01-03 2018-06-29 马上消费金融股份有限公司 A kind of method and device of processing business request
CN110209569A (en) * 2018-05-10 2019-09-06 腾讯科技(深圳)有限公司 Interface test method, interface test device and storage medium
CN108984236A (en) * 2018-08-08 2018-12-11 郑州云海信息技术有限公司 A kind of implementation method and equipment of virtual management platform

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
基于WCDMA测项的自动化测试系统设计;李君;《中国优秀硕士学位论文全文数据库 信息科技辑》(第01期);I138-1064 *
本体驱动下的地图符号共享方法研究;周海霞;《中国优秀硕士学位论文全文数据库 基础科学辑》(第07期);A008-154 *

Also Published As

Publication number Publication date
CN110659017A (en) 2020-01-07

Similar Documents

Publication Publication Date Title
US11803451B2 (en) Application exception recovery
CN113110941B (en) Managing delivery of code and dependency data using application containers
US9900275B2 (en) Tracking object across processes
US9652314B2 (en) Dynamic application programming interface publication for providing web services
JP5941461B2 (en) Shared data collection
US8145593B2 (en) Framework for web services exposing line of business applications
CN109716736B (en) Application data sharing and decision service platform
US8296774B2 (en) Service-based endpoint discovery for client-side load balancing
CN109716735B (en) System and method for sharing application data between isolated applications executing on one or more application platforms
US20160019104A1 (en) Cross-domain data sharing with permission control
US20210211428A1 (en) Addressing transaction conflict in blockchain systems
US8280197B1 (en) Managed background loading of image resources in resource-constrained devices
CN110659017B (en) External request processing method and related device
US20080216050A1 (en) Method and System for Accessing a Resource Implemented in a Computer Network
US8812678B2 (en) Integration of an application server and data grid
US20170235943A1 (en) Application Access Control Method and Apparatus
CN106055348A (en) Method and device for informing system attribute updating
CN109240621B (en) Nonvolatile internal memory management method and device
CN107391274A (en) The processing method and processing device of deferred information
CN109445966B (en) Event processing method, device, medium and computing equipment
JP6418419B2 (en) Method and apparatus for hard disk to execute application code
WO2022199672A1 (en) Access control method for precise permission revocation, related apparatus, and system
CN109462663A (en) A kind of method, voice interactive system and storage medium that limitation system resource occupies
JP7427775B2 (en) Stored procedure execution method, device, database system, and storage medium
WO2017107762A1 (en) Application tracing 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