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

External request processing method and related device Download PDF

Info

Publication number
CN110659017A
CN110659017A CN201910887858.7A CN201910887858A CN110659017A CN 110659017 A CN110659017 A CN 110659017A CN 201910887858 A CN201910887858 A CN 201910887858A CN 110659017 A CN110659017 A CN 110659017A
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.)
Granted
Application number
CN201910887858.7A
Other languages
Chinese (zh)
Other versions
CN110659017B (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

Images

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, wherein under the condition of inheriting a general interface class, only an interface corresponding to an external requester is opened for the external requester, but not all interfaces are opened to the outside, so that request information transmitted by the external requester by using a preset interface corresponding to the external requester is received, then an implementation method corresponding to the preset interface is called to process the request information, and a processing result is returned to the external requester. Therefore, the interfaces are only opened for the external requesters in a targeted manner, and not all the interfaces are opened to all the external requesters, so that the external requesters which are not opened can not call any interface, and the external requesters which are opened can only call the corresponding interfaces, thereby avoiding illegal calling of the interfaces and improving the safety. In addition, the external requester can only call the corresponding interface without selecting among all interfaces, so the external requester is more friendly.

Description

External request processing method and related device
Technical Field
The present invention relates to a request processing technology, and more particularly, to a method, system, apparatus, and computer-readable storage medium for processing an external request.
Background
Spring is an open source code design level framework, which solves the problem of loose coupling between a business logic layer and other layers, so that the interface-oriented programming idea is applied throughout the whole system. Spring is a lightweight Java development framework that arose in 2003 and was created by Rod Johnson. Briefly, Spring is a layered JavaSE/EE full-stack (one-stop) 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 calls the required API to complete access.
But the current way of opening the API encounters security problems and is not friendly to external requesters.
Therefore, how to avoid the security problem caused by the API opening is a problem to be solved by those skilled in the art.
Disclosure of Invention
The invention aims to provide an external request processing method, a system, a device and a computer readable storage medium, which are used for solving the problem of security caused by API opening.
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 requester through a preset interface; the preset interface is an interface which is opened for the external requester in advance, and inherits the 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 of the request information transmitted by the external requester through the preset interface includes:
and receiving request information transmitted by an external requester through a preset interface by using an HTTP (hyper text transport protocol).
If the preset interface is an interface inheriting a target interface, the processing the request information by using the implementation method corresponding to the preset interface includes:
and processing the request information by utilizing an implementation method corresponding to the preset interface and an implementation method of the interface inherited by the implementation method.
Before receiving request information transmitted by an external requester through a preset interface, the method further includes:
detecting whether a method in a service implementation class implements an interface method in a parent class of the preset interface class;
if so, 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 in which the preset method is positioned realizes the interface method in the father class of the preset interface class;
and if so, opening the preset interface so that an external request can transmit request information by using the preset interface.
The present application also provides an external request processing system, including:
the receiving module is used for receiving request information transmitted by an external requester through a preset interface; the preset interface is an interface which is opened for the external requester in advance, and inherits the general interface class;
the processing module is used for processing the request information by utilizing 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 through a preset interface.
And if the preset interface is an interface inheriting the target 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 implements the interface method in the parent class of the interface class;
a first opening module, configured to open the preset interface when the method in the service implementation class has implemented the interface method in the parent class of the interface class, so that an external request transmits request information using the preset interface;
a second detection module, configured to detect whether the subclass of the class in which the service implementation class is located implements the interface method in the parent class of the preset interface class when the method in the service implementation class does not implement 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 realizes the preset interface so as to facilitate an external request to transmit request information by utilizing the preset interface.
The present application also provides an external request processing apparatus, including:
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 further provides a computer-readable storage medium having stored thereon a computer program which, when executed by a processor, performs the steps of the external request processing method as described.
According to the above scheme, the external request processing method provided by the embodiment of the invention comprises the following steps: receiving request information transmitted by an external requester through a preset interface; the preset interface is an interface which is opened for the external requester 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 generic interface class is inherited, only the interface corresponding to the external requester is opened for the external requester, but not all the interfaces are opened to the outside, so that the external requester receives the request information transmitted by the external requester through the preset interface corresponding to the external requester, calls the implementation method corresponding to the preset interface to process the request information, and returns the processing result to the external requester. Therefore, the interfaces are only opened for the external requesters in a targeted manner, and not all the interfaces are opened to all the external requesters, so that the external requesters which are not opened can not call any interface, and the external requesters which are opened can only call the corresponding interfaces, thereby avoiding illegal calling of the interfaces and improving the safety. In addition, the external requester can only call the corresponding interface without selecting among all interfaces, so the external requester is more friendly. The application also provides an external request processing system, an external request processing device and a computer readable storage medium, which can also achieve the technical effects.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the drawings without creative efforts.
FIG. 1 is a flowchart 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 apparatus according to an embodiment of the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
The embodiment of the invention discloses an external request processing method, a system, a device and a computer readable storage medium, which are used for solving the problem of security caused by API opening.
Referring to fig. 1, an external request processing method provided in an embodiment of the present invention specifically includes:
s101, receiving request information transmitted by an external requester through a preset interface; the preset interface is an interface which is opened for the external requester in advance, and the preset interface inherits the universal interface class.
Firstly, request information transmitted by an external requester through a corresponding preset interface is received.
In the scheme, an interface is opened specifically for an external request, that is, corresponding to an external requester, which interface needs to be called is determined, and only the interface which needs to be called is opened, and the interface inherits a general interface class, and does not open the APIs defined in all controller classes to the outside any more. It should be noted that the generic interface class is a set of interface classes that includes one or more generic interfaces. The universal interface class comprises methods for realizing various external request party requirements, and after a preset interface is opened for an external request party, the request information of the external request party can be processed through corresponding methods inherited by the preset interface.
Specifically, in the present solution, a Java Interface class (Interface) may be used to replace a life API of the controller class, and the API Interface class required by the logic layer is selectively integrated according to different requirements of the logic layer on the Interface, and an Interface that inherits the API Interface class is opened to the corresponding external requester, so that the Interface called by the external requester is the API Interface class corresponding to the external requester, instead of all API Interface classes.
In a preferred embodiment, the receiving request information transmitted by an external requester through a preset interface includes:
and receiving request information transmitted by an external requester through a preset interface by using an HTTP (hyper text transport protocol).
It should be noted that, at present, most applications may use the HTTP protocol to transmit data, and a small number of applications may also use the socket protocol, and in order to make the applications wider, the HTTP protocol is preferably supported in the present solution, and the HTTP protocol is used to receive request information. Of course, the socket protocol may be utilized if desired.
In the latest version (5.1.0 RC2) of the current Spring Framework, a function of supporting a targeted open interface to an external requester is not supported for a while, and therefore, corresponding to the Spring Framework, the present application provides a specific implementation manner, and before S101, the method further includes:
detecting whether a method in a service implementation class implements an interface method in a parent class of the preset interface class;
if so, 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 in which the preset method is positioned realizes the interface method in the father class of the preset interface class;
and if so, 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 an interface method in a parent class of an interface class needs to be directly implemented in a class of a service method. However, in the present application, a situation may occur in which an interface is indirectly implemented by using a subclass, and therefore, in this scheme, 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 is opened, which is different from the prior art, and if a method in a service implementation class does not implement an interface method in a parent class of the preset interface class, it is further detected whether a subclass of the class in which the preset method is located implements an interface method in a parent class of the interface class, and if a subclass of the subclass implements an interface method in a parent class of the preset interface class, the preset interface may also be opened.
And 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 can have a logic method capable of processing the request.
Specifically, the request information is processed by using an implementation method corresponding to a preset interface, so that a processing result of the request is obtained.
It should be noted that, there may also be an inherited relationship between interfaces, for example, one interface class with higher generality is a creation interface class, the interface has only logic for creating information, while one interface class with lower generality and higher pertinence is a creation student user interface class, and the other interface class with lower generality and higher pertinence is a creation teacher user interface class, and both creation user classes need logic for creating information, so that the interface classes of both creation users can inherit the creation interface class.
Corresponding implementation methods are provided for different interface classes, and due to the existence of the inheritance relationship, if the preset interface inherits other interfaces, the implementation method of the inherited parent class interface is also required to be called to complete request processing during information processing. Therefore, in a specific embodiment, if the preset interface is an interface that inherits a target interface, the processing the request information by using the implementation method corresponding to the preset interface includes:
and processing the request information by utilizing an implementation method corresponding to the preset interface and an implementation method of the interface inherited by the implementation method.
The class is specifically used for creating the user, so that the class can inherit and create the interface class, multiplex the creation method of the created interface class, and add the logic method aiming at the user, thereby realizing the method for creating the user.
S103, returning the processing result to the external requester.
Therefore, according to the external request processing method provided by the embodiment of the application, the interface corresponding to the external requester is only opened for the external requester, and not all the interfaces are opened to the outside, so that the request information transmitted by the external requester by using the preset interface corresponding to the external requester is received first, then the implementation method corresponding to the preset interface is called to process the request information, and the processing result is returned to the external requester. Therefore, the interfaces are only opened for the external requesters in a targeted manner, and not all the interfaces are opened to all the external requesters, so that the external requesters which are not opened can not call any interface, and the external requesters which are opened can only call the corresponding interfaces, thereby avoiding illegal calling of the interfaces and improving the safety. In addition, the external requester can only call the corresponding interface without selecting from all the interfaces, so that the external requester is more friendly.
An external request processing system provided in the embodiments of the present application is described below, and a reference may be made to an external request processing system described below and any of the embodiments described above.
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 through a preset interface; the preset interface is an interface which is opened for the external requester in advance, and the preset interface inherits the universal interface class.
In a specific embodiment, the receiving module 201 is specifically configured to receive, by using an HTTP protocol, request information transmitted by an external requester through a preset interface.
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 inheriting a 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 an interface inherited by the implementation method.
A returning module 203, 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 implements the interface method in the parent class of the interface class;
a first opening module, configured to open the preset interface when the method in the service implementation class has implemented the interface method in the parent class of the interface class, so that an external request transmits request information using the preset interface;
a second detection module, configured to detect whether the subclass of the class in which the service implementation class is located implements the interface method in the parent class of the preset interface class when the method in the service implementation class does not implement 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 realizes the preset interface so as to facilitate an external request to transmit request information by utilizing the preset interface. An external request processing system of this embodiment is configured to implement the external request processing method, and therefore a specific implementation of the external request processing system may be found in the foregoing embodiment parts 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 external request processing method, so that the specific implementation thereof may refer to descriptions of corresponding embodiments of each part, and details thereof are not repeated herein.
In the following, an external request processing device provided in the embodiments of the present application is described, and an external request processing device described below and any of the embodiments described above 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, configured to implement the steps of the external request processing method according to any of the above embodiments 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 computer-readable instructions in the non-volatile storage medium to run. The processor 200 provides computing and control capabilities for an external request processing device that may implement the steps provided by any of the external request processing method embodiments described above.
The present application also provides a computer readable and writable storage medium, on which a computer program is stored, which when executed by a processor may implement the steps provided by the above embodiments. The storage medium may include: various media capable of storing program codes, such as a usb disk, a removable hard disk, a Random Access Memory (RAM), a magnetic disk, or an optical disk.
The embodiments in the present description are described in a progressive manner, each embodiment focuses on differences from other embodiments, and the same and similar parts among the embodiments are referred 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 (10)

1. An external request processing method, comprising:
receiving request information transmitted by an external requester through a preset interface; the preset interface is an interface which is opened for the external requester in advance, and inherits the 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.
2. The method according to claim 1, wherein the receiving request information transmitted by an external requester through a preset interface comprises:
and receiving request information transmitted by an external requester through a preset interface by using an HTTP (hyper text transport protocol).
3. The method according to claim 1, wherein if the preset interface is an interface that inherits a target interface, the processing the request information by using an implementation method corresponding to the preset interface includes:
and processing the request information by utilizing an implementation method corresponding to the preset interface and an implementation method of the interface inherited by the implementation method.
4. The method according to any one of claims 1 to 3, wherein before receiving the request information transmitted by the external requester through the preset interface, the method further comprises:
detecting whether a method in a service implementation class implements an interface method in a parent class of the preset interface class;
if so, 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 in which the preset method is positioned realizes the interface method in the father class of the preset interface class;
and if so, opening the preset interface so that an external request can transmit request information by using the preset interface.
5. An external request processing system, comprising:
the receiving module is used for receiving request information transmitted by an external requester through a preset interface; the preset interface is an interface which is opened for the external requester in advance, and inherits the general interface class;
the processing module is used for processing the request information by utilizing 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.
6. The system according to claim 5, wherein the receiving module is specifically configured to receive, by using an HTTP protocol, request information transmitted by an external requester using a preset interface.
7. The method according to claim 5, wherein the predetermined interface is an interface that inherits a target interface, and the processing module is specifically configured to process the request message by using an implementation method corresponding to the predetermined interface and an implementation method of an interface that is inherited by the implementation method.
8. The method of any one of claims 5 to 7, further comprising:
the first detection module is used for detecting whether the method in the service implementation class implements the interface method in the parent class of the interface class;
a first opening module, configured to open the preset interface when the method in the service implementation class has implemented the interface method in the parent class of the interface class, so that an external request transmits request information using the preset interface;
a second detection module, configured to detect whether the subclass of the class in which the service implementation class is located implements the interface method in the parent class of the preset interface class when the method in the service implementation class does not implement 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 realizes the preset interface so as to facilitate an external request to transmit request information by utilizing the preset interface.
9. An external request processing apparatus, comprising:
a memory for storing a computer program;
processor for implementing the steps of the external request processing method according to any of claims 1 to 4 when executing the computer program.
10. A computer-readable storage medium, characterized in that a computer program is stored on the computer-readable storage medium, which computer program, when being executed by a processor, carries out the steps of the external request processing method according to any one of claims 1 to 4.
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 true CN110659017A (en) 2020-01-07
CN110659017B 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)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114248703A (en) * 2020-09-21 2022-03-29 上海汽车集团股份有限公司 Method for using open interface in automobile and related device
CN114844875A (en) * 2022-04-21 2022-08-02 深圳依时货拉拉科技有限公司 Application Programming Interface (API) management method, device, equipment and medium

Citations (13)

* 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 马上消费金融股份有限公司 Method and device for processing service request
CN108255615A (en) * 2017-11-30 2018-07-06 平安科技(深圳)有限公司 Across language call method, server and storage medium
US20180198839A1 (en) * 2017-01-06 2018-07-12 Western Digital Technologies, Inc. Automatic Discovery of Management Nodes and Generation of CLI Using HA Module
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

Patent Citations (13)

* 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
US20180198839A1 (en) * 2017-01-06 2018-07-12 Western Digital Technologies, Inc. Automatic Discovery of Management Nodes and Generation of CLI Using HA Module
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 马上消费金融股份有限公司 Method and device for processing service 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
周海霞: "本体驱动下的地图符号共享方法研究", 《中国优秀硕士学位论文全文数据库 基础科学辑》, no. 07, pages 008 - 154 *
李君: "基于WCDMA测项的自动化测试***设计", 《中国优秀硕士学位论文全文数据库 信息科技辑》, no. 01, pages 138 - 1064 *

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114248703A (en) * 2020-09-21 2022-03-29 上海汽车集团股份有限公司 Method for using open interface in automobile and related device
CN114248703B (en) * 2020-09-21 2024-05-31 上海汽车集团股份有限公司 Method for using open interface in automobile and related device
CN114844875A (en) * 2022-04-21 2022-08-02 深圳依时货拉拉科技有限公司 Application Programming Interface (API) management method, device, equipment and medium
CN114844875B (en) * 2022-04-21 2024-02-06 深圳依时货拉拉科技有限公司 Application programming interface API management method, device, equipment and medium

Also Published As

Publication number Publication date
CN110659017B (en) 2024-03-29

Similar Documents

Publication Publication Date Title
US11803451B2 (en) Application exception recovery
US20160142413A1 (en) Ephemeral applications
WO2022027867A1 (en) Mdc-based multithreaded link tracking method and apparatus, and computer-readable storage medium
WO2022127214A1 (en) Permission application method, component and apparatus, and computer readable storage medium
CN109716735B (en) System and method for sharing application data between isolated applications executing on one or more application platforms
US11375001B2 (en) File transmission method and apparatus
US9875137B2 (en) Intelligent application back stack management
JP5540109B2 (en) System and method for loading application classes
RU2639667C2 (en) Context invitation in trial version of application
CN110659017A (en) External request processing method and related device
CN105094791A (en) Status bar notification storage method and status bar notification storage device
CN104573497A (en) Processing method and device for starting items
JP2019509567A (en) Resource loading method, service function implementing method and apparatus for application (APP)
CN108366098B (en) Data interaction method and device for network nodes
US10552233B2 (en) Application convergence method and apparatus
CN110858242A (en) Page skipping method and device
CN110442636B (en) Data reading and writing method and device and data reading and writing equipment
US20170235943A1 (en) Application Access Control Method and Apparatus
CN104573495A (en) Startup item processing method and startup item processing device
AU2017363322B2 (en) Application resource usage reduction
CN113360251B (en) Intelligent contract execution and cross-contract calling method, device and storage medium
WO2018039007A1 (en) Application behavior information
US9043871B2 (en) Method for operating invisible system services on android platform
US20170251110A1 (en) Communication data account processing method and device thereof
CN108170408B (en) JS object definition generation 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