CN113873037B - Data pushing method, device, computer equipment and storage medium - Google Patents

Data pushing method, device, computer equipment and storage medium Download PDF

Info

Publication number
CN113873037B
CN113873037B CN202111148062.3A CN202111148062A CN113873037B CN 113873037 B CN113873037 B CN 113873037B CN 202111148062 A CN202111148062 A CN 202111148062A CN 113873037 B CN113873037 B CN 113873037B
Authority
CN
China
Prior art keywords
target
data
pushing
push
class
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
CN202111148062.3A
Other languages
Chinese (zh)
Other versions
CN113873037A (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.)
Sichuan Changhong Network Technology Co Ltd
Original Assignee
Sichuan Changhong Network 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 Sichuan Changhong Network Technology Co Ltd filed Critical Sichuan Changhong Network Technology Co Ltd
Priority to CN202111148062.3A priority Critical patent/CN113873037B/en
Publication of CN113873037A publication Critical patent/CN113873037A/en
Application granted granted Critical
Publication of CN113873037B publication Critical patent/CN113873037B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/55Push-based network services
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/56Provisioning of proxy services
    • H04L67/565Conversion or adaptation of application format or content
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Abstract

The invention provides a data pushing method, a data pushing device, computer equipment and a storage medium, wherein the data pushing method comprises the following steps: acquiring a target data pushing task according to the ID of the target equipment; obtaining a target link address and a target interface implementation class of a target pushing platform according to the target data pushing task; instantiating the target interface implementation class according to the original data sent by the target equipment, and pushing the target data obtained after the instantiation to the target pushing platform; the method solves the problems of poor expansibility, difficult maintenance and the like of the data pushing method in the prior art, improves the transverse scalability and expansibility of the system, and does not modify the original codes when a pushing platform is newly added, thereby reducing the testing tasks of testers and reducing the risk of on-line problems.

Description

Data pushing method, device, computer equipment and storage medium
Technical Field
The present invention relates to the field of computer technologies, and in particular, to a data pushing method, a data pushing device, a computer device, and a storage medium.
Background
In the field of the internet of things, a road side parking charging system based on geomagnetism is widely applied in real life, and the operation process of the system comprises a terminal equipment manufacturer, a telecom NB-IOT platform, a data pushing platform, a data receiving platform and an operation platform. The data pushing platform plays a role in data transfer, and on one hand, the data reported by the terminal and the telecom NB-IOT platform are required to be received, and on the other hand, the reported data are required to be pushed to a plurality of data receiving platforms in real time. The traditional method for processing the problem comprises the steps that a developer respectively assembles data to be transmitted, request response and acquisition results corresponding to each platform by using code logic control according to geomagnetic-related platform types, and the processing mode has the defects that firstly, the data assembling and processing processes of different platforms are transmitted, and the developer is required to judge and distinguish by using the code logic; 2. the code coupling degree is high, the readability is poor, and the maintenance is difficult; 2. the system has poor transverse expansibility, when a pushing platform is newly added, the original codes can be modified, the risk of on-line problems is increased, and the testing task of a tester can be increased.
Therefore, the data pushing method in the prior art has the problems of poor expansibility, difficult maintenance and the like.
Disclosure of Invention
Aiming at the defects in the prior art, the data pushing method, the device, the computer equipment and the storage medium provided by the invention solve the problems of poor expansibility, difficult maintenance and the like in the data pushing method in the prior art, improve the transverse scalability and expansibility of the system, and avoid modifying the original codes when a pushing platform is newly added, thereby reducing the testing task of a tester and reducing the risk of on-line problems.
In a first aspect, the present invention provides a data pushing method, where the pushing method includes: acquiring a target data pushing task according to the ID of the target equipment; obtaining a target link address and a target interface implementation class of a target pushing platform according to the target data pushing task; and instantiating the target interface implementation class according to the original data sent by the target equipment, and pushing the target data obtained after the instantiation to the target pushing platform.
Optionally, before the target data pushing task is acquired according to the ID identification of the target device, the method further includes: creating a push interface class; according to the push interface class, establishing a plurality of interface implementation classes matched with the data push platform, wherein each interface implementation class comprises a data conversion method and a data push method; a plurality of data push tasks are created, each data push task including a link address of a push platform, an associated interface implementation class, and an associated device identification.
Optionally, instantiating the target interface implementation class according to the original data sent by the target device, and pushing the target data obtained after the instantiation to the target pushing platform, where the method includes: converting original data sent by the target equipment into target data according to the data conversion method of the target interface implementation class; and pushing the target data to the target pushing platform according to the data pushing method of the target interface implementation class and the target connection address.
Optionally, according to the data conversion method of the target interface implementation class, converting the original data sent by the target device into target data includes: acquiring a data conversion method in the target interface implementation class according to the class name of the target interface implementation class; and executing the data conversion method to convert the original data sent by the target equipment into the target data.
Optionally, after performing the data conversion method to convert the original data sent by the target device into the target data, the method further includes: storing the target data into a push task database, and setting the push state of the target data in the push task database.
Optionally, when the pushing state of the target data is to be pushed, pushing the target data to the target pushing platform according to the data pushing method of the target interface implementation class and the target link address, including: acquiring a data pushing method in the target interface implementation class according to the class name of the target interface implementation class; and executing the data conversion method to push the target data to the target push platform according to the target link address.
Optionally, after performing the data conversion method and causing the target data to be pushed to the target push platform according to the target link address, the method further includes: receiving response data sent by the target pushing platform; when the response data is a preset target threshold value, modifying the push state of the target data in the push task database.
In a second aspect, the present invention provides a data pushing apparatus, the apparatus comprising: the pushing task acquisition module is used for acquiring a target data pushing task according to the ID identification of the target equipment; the interface realization class acquisition module is used for acquiring a target link address and a target interface realization class of the target pushing platform according to the target data pushing task; and the data pushing module is used for instantiating the target interface implementation class according to the original data sent by the target equipment and pushing the target data obtained by the instantiation to the target pushing platform.
In a third aspect, the present invention provides a computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, the processor implementing the following steps when executing the computer program: acquiring a target data pushing task according to the ID of the target equipment; obtaining a target link address and a target interface implementation class of a target pushing platform according to the target data pushing task; and instantiating the target interface implementation class according to the original data sent by the target equipment, and pushing the target data obtained after the instantiation to the target pushing platform.
In a fourth aspect, the present invention provides a readable storage medium having stored thereon a computer program which when executed by a processor performs the steps of: acquiring a target data pushing task according to the ID of the target equipment; obtaining a target link address and a target interface implementation class of a target pushing platform according to the target data pushing task; and instantiating the target interface implementation class according to the original data sent by the target equipment, and pushing the target data obtained after the instantiation to the target pushing platform.
Compared with the prior art, the invention has the beneficial effects that:
the invention realizes the association of the data acquisition equipment, the pushing platform and the interface realization class by creating the data pushing task, thereby obtaining the target data pushing task according to the ID identification of the target equipment, and obtaining the target link address and the target interface realization class according to the target data pushing task; the original data sent by the target equipment can be converted into target data which can be identified by the target pushing platform through the target interface implementation class, and the target data can be automatically pushed to the target pushing platform. Therefore, the data pushing method provided by the invention can automatically identify the corresponding pushing platform according to the equipment, automatically assemble the target data identified by each pushing platform according to the agreed rule and automatically push the data; furthermore, when one pushing platform is added or reduced in the invention, only one data pushing task and the associated interface realization class are added or reduced, so that the coupling degree of codes is reduced, the problems of poor expansibility, difficult maintenance and the like of the data pushing method in the prior art are solved, the transverse scalability and expansibility of the system are improved, the original codes are not modified when the pushing platform is newly added, the testing task of a tester is reduced, and the risk of on-line problems is reduced.
Drawings
Fig. 1 is a schematic flow chart of a data pushing method according to an embodiment of the present invention;
fig. 2 is a schematic diagram of a data push task creation flow provided in an embodiment of the present invention;
fig. 3 is a flow chart of another data pushing method according to an embodiment of the present invention.
Detailed Description
For the purposes of making the objects, technical solutions and advantages of the embodiments of the present application more clear, the technical solutions of the embodiments of the present application will be clearly and completely described below with reference to the drawings in the embodiments of the present application, and it is apparent that the described embodiments are some embodiments of the present application, but not all embodiments. All other embodiments, which can be made by one of ordinary skill in the art without undue burden from the present disclosure, are within the scope of the present application based on the embodiments herein.
Fig. 1 is a schematic flow chart of a data pushing method according to an embodiment of the present invention; as shown in fig. 1, the pushing method includes:
step S101, acquiring a target data pushing task according to an ID (identity) of target equipment;
in this embodiment, before the target data push task is acquired according to the ID of the target device, the method further includes: creating a push interface class; according to the push interface class, establishing a plurality of interface implementation classes matched with the data push platform, wherein each interface implementation class comprises a data conversion method and a data push method; a plurality of data push tasks are created, each data push task including a link address of a push platform, an associated interface implementation class, and an associated device identification.
It should be noted that, according to the actual application scenario of data pushing, a pushing interface class interface A is created, where the interface includes an http request body method for implementing data conversion and an execution and calling result method for implementing data pushing; the implementation processes of the data conversion method and the data pushing method of each interface implementation class can be different, wherein the general framework of the data conversion and the data pushing method is defined in the pushing interface class, and the specific implementation method of the data conversion and the data pushing is defined in each interface implementation class.
Further, as shown in fig. 2, the present embodiment may create a plurality of data push tasks on a web page of an application system, and each data push task includes a link address of a push platform, an associated interface implementation class, and an associated device identification. It can be seen that the associated target data pushing task can be queried according to the ID identification of the target device.
Step S102, obtaining a target link address and a target interface implementation class of a target push platform according to the target data push task;
it should be noted that, each target data pushing task includes a link address of the pushing platform, an associated interface implementation class and an associated device identifier, so that the target pushing platform, the target link address of the target pushing platform and the target interface implementation class can be obtained through the target data pushing task.
Step S103, instantiating the target interface implementation class according to the original data sent by the target device, and pushing the target data obtained after the instantiation to the target pushing platform.
In this embodiment, instantiating the target interface implementation class according to the original data sent by the target device, and pushing the target data obtained after the instantiation to the target pushing platform, where the method includes: converting original data sent by the target equipment into target data according to the data conversion method of the target interface implementation class; and pushing the target data to the target pushing platform according to the data pushing method of the target interface implementation class and the target connection address.
It should be noted that, in this embodiment, the target device includes a sensor device for collecting data, when the target device collects original data, a data conversion method in a class is implemented through a target interface to convert the original data into target data identifiable by a target pushing platform, and then a data pushing method of a class is implemented through the target interface to push the target data to the target pushing platform, so as to implement automatic pushing of data.
Compared with the prior art, the invention has the beneficial effects that:
the invention realizes the association of the data acquisition equipment, the pushing platform and the interface realization class by creating the data pushing task, thereby obtaining the target data pushing task according to the ID identification of the target equipment, and obtaining the target link address and the target interface realization class according to the target data pushing task; the original data sent by the target equipment can be converted into target data which can be identified by the target pushing platform through the target interface implementation class, and the target data can be automatically pushed to the target pushing platform. Therefore, the data pushing method provided by the invention can automatically identify the corresponding pushing platform according to the equipment, automatically assemble the target data identified by each pushing platform according to the agreed rule and automatically push the data; furthermore, when one pushing platform is added or reduced in the invention, only one data pushing task and the associated interface realization class are added or reduced, so that the coupling degree of codes is reduced, the problems of poor expansibility, difficult maintenance and the like of the data pushing method in the prior art are solved, the transverse scalability and expansibility of the system are improved, the original codes are not modified when the pushing platform is newly added, the testing task of a tester is reduced, and the risk of on-line problems is reduced.
In another embodiment of the present invention, according to a data conversion method of the target interface implementation class, converting original data sent by the target device into target data includes: acquiring a data conversion method in the target interface implementation class according to the class name of the target interface implementation class; and executing the data conversion method to convert the original data sent by the target equipment into the target data.
Optionally, after performing the data conversion method to convert the original data sent by the target device into the target data, the method further includes: storing the target data into a push task database, and setting the push state of the target data in the push task database.
Optionally, when the pushing state of the target data is to be pushed, pushing the target data to the target pushing platform according to the data pushing method of the target interface implementation class and the target link address, including: acquiring a data pushing method in the target interface implementation class according to the class name of the target interface implementation class; and executing the data conversion method to push the target data to the target push platform according to the target link address.
Optionally, after performing the data conversion method and causing the target data to be pushed to the target push platform according to the target link address, the method further includes: receiving response data sent by the target pushing platform; when the response data is a preset target threshold value, modifying the push state of the target data in the push task database.
It should be noted that, as shown in fig. 3, geomagnetic data reported from a telecom IOT or a terminal device is firstly found out URL of a pushing task configured by a platform to be pushed and an implementation class of a corresponding platform according to a device ID, an instance of the implementation class is created by using a java self-contained reflection mechanism, and the instance calls a method for assembling body data to complete data conversion and stores the data into a database of the task to be pushed; in this embodiment, a timing task is configured to perform scanning of the task database to be pushed every 2s, and if no task exists, the scanning task is exited to enter the next scanning task. If a task to be executed exists, an instance of the implementation class is created by using a java self-contained reflection mechanism, the instance executes an http request of a real push task to obtain an execution result, and the push task is ended up until the execution result is obtained; and (3) completing the data conversion process and the http request for executing the real pushing task by calling the method for assembling the body data in the example, obtaining an execution result, wherein the corresponding matching of the class and the platform is an automatic process, and a developer is not required to judge the corresponding platform through code logic.
The specific definition of the push interface class and the interface implementation class in this embodiment is as follows:
Figure BDA0003286163800000051
Figure BDA0003286163800000061
Figure BDA0003286163800000062
Figure BDA0003286163800000063
the interface instantiation in this embodiment is shown in the following table:
Figure BDA0003286163800000064
Figure BDA0003286163800000071
in the embodiment, the method for processing the geomagnetic data pushed by multiple platforms based on the java reflection mechanism simplifies development flow and complicated logic judgment by utilizing the java reflection mechanism, and achieves the aims of reducing cost and enhancing efficiency for enterprises. The Java reflection mechanism is a method and a device for dynamically loading classes and acquiring detailed information of the classes when a program runs, so that the classes or the attributes of objects are operated.
In one embodiment of the present invention, there is provided a data pushing apparatus including: the pushing task acquisition module is used for acquiring a target data pushing task according to the ID identification of the target equipment; the interface realization class acquisition module is used for acquiring a target link address and a target interface realization class of the target pushing platform according to the target data pushing task; and the data pushing module is used for instantiating the target interface implementation class according to the original data sent by the target equipment and pushing the target data obtained by the instantiation to the target pushing platform.
In one embodiment of the invention, the invention provides a computer device comprising a memory, a processor and a computer program stored on the memory and executable on the processor, the processor implementing the following steps when executing the computer program: acquiring a target data pushing task according to the ID of the target equipment; obtaining a target link address and a target interface implementation class of a target pushing platform according to the target data pushing task; and instantiating the target interface implementation class according to the original data sent by the target equipment, and pushing the target data obtained after the instantiation to the target pushing platform.
In one embodiment of the present invention, the present invention provides a readable storage medium having stored thereon a computer program which when executed by a processor performs the steps of: acquiring a target data pushing task according to the ID of the target equipment; obtaining a target link address and a target interface implementation class of a target pushing platform according to the target data pushing task; and instantiating the target interface implementation class according to the original data sent by the target equipment, and pushing the target data obtained after the instantiation to the target pushing platform.
Those skilled in the art will appreciate that all or part of the processes in the methods of the above embodiments may be implemented by a computer program for instructing relevant hardware, where the program may be stored in a non-volatile computer readable storage medium, and where the program, when executed, may include processes in the embodiments of the methods described above. Any reference to memory, storage, database, or other medium used in the various embodiments provided herein may include non-volatile and/or volatile memory. The nonvolatile memory can include Read Only Memory (ROM), programmable ROM (PROM), electrically Programmable ROM (EPROM), electrically Erasable Programmable ROM (EEPROM), or flash memory. Volatile memory can include Random Access Memory (RAM) or external cache memory. By way of illustration and not limitation, RAM is available in a variety of forms such as Static RAM (SRAM), dynamic RAM (DRAM), synchronous DRAM (SDRAM), double Data Rate SDRAM (DDRSDRAM), enhanced SDRAM (ESDRAM), synchronous Link DRAM (SLDRAM), memory bus direct RAM (RDRAM), direct memory bus dynamic RAM (DRDRAM), and memory bus dynamic RAM (RDRAM), among others.
It should be noted that in this document, relational terms such as "first" and "second" and the like are used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Moreover, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising one … …" does not exclude the presence of other like elements in a process, method, article, or apparatus that comprises the element.

Claims (4)

1. The data pushing method is characterized by comprising the following steps of:
creating a push interface class; according to the push interface class, establishing a plurality of interface implementation classes matched with the data push platform, wherein each interface implementation class comprises a data conversion method and a data push method;
creating a plurality of data pushing tasks, wherein each data pushing task comprises a link address of a pushing platform, an associated interface implementation class and an associated equipment identifier;
acquiring a target data pushing task according to the ID of the target equipment;
obtaining a target link address and a target interface implementation class of a target pushing platform according to the target data pushing task;
acquiring a data conversion method in the target interface implementation class according to the class name of the target interface implementation class;
executing the data conversion method to convert the original data sent by the target equipment into the target data;
storing the target data into a push task database, and setting a push state of the target data in the push task database;
when the pushing state of the target data is to be pushed, acquiring a data pushing method in the target interface implementation class according to the class name of the target interface implementation class;
executing the data pushing method to push the target data to the target pushing platform according to the target link address;
receiving response data sent by the target pushing platform;
when the response data is a preset target threshold value, modifying the push state of the target data in the push task database.
2. A data pushing apparatus based on the data pushing method of claim 1, characterized in that the apparatus comprises:
the creation module is used for creating a push interface class; the method is also used for establishing a plurality of interface implementation classes matched with the data pushing platform according to the pushing interface class, and each interface implementation class comprises a data conversion method and a data pushing method; the method is also used for creating a plurality of data pushing tasks, and each data pushing task comprises a link address of a pushing platform, an associated interface implementation class and an associated equipment identifier;
the pushing task acquisition module is used for acquiring a target data pushing task according to the ID identification of the target equipment;
the interface realization class acquisition module is used for acquiring a target link address and a target interface realization class of the target pushing platform according to the target data pushing task;
the data pushing module is used for acquiring a data conversion method in the target interface implementation class according to the class name of the target interface implementation class; the data conversion method is also used for executing the data conversion method, so that the original data sent by the target equipment are converted into the target data; the target data is also used for storing the target data into a push task database, and the push state of the target data is set in the push task database; when the pushing state of the target data is to be pushed, the method is further used for acquiring a data pushing method in the target interface implementation class according to the class name of the target interface implementation class; executing the data conversion method to push the target data to the target push platform according to the target link address;
the receiving module is used for receiving response data sent by the target pushing platform; and the pushing state of the target data is modified in the pushing task database when the response data is a preset target threshold value.
3. 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 steps of the data pushing method of claim 1 when the computer program is executed by the processor.
4. A readable storage medium having stored thereon a computer program, wherein the computer program when executed by a processor implements the steps of the data push method of 1.
CN202111148062.3A 2021-09-29 2021-09-29 Data pushing method, device, computer equipment and storage medium Active CN113873037B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111148062.3A CN113873037B (en) 2021-09-29 2021-09-29 Data pushing method, device, computer equipment and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111148062.3A CN113873037B (en) 2021-09-29 2021-09-29 Data pushing method, device, computer equipment and storage medium

Publications (2)

Publication Number Publication Date
CN113873037A CN113873037A (en) 2021-12-31
CN113873037B true CN113873037B (en) 2023-05-19

Family

ID=78992195

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111148062.3A Active CN113873037B (en) 2021-09-29 2021-09-29 Data pushing method, device, computer equipment and storage medium

Country Status (1)

Country Link
CN (1) CN113873037B (en)

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109617941A (en) * 2018-10-22 2019-04-12 中国平安财产保险股份有限公司 Data push method, device, computer equipment and computer readable storage medium
CN109635187A (en) * 2018-11-26 2019-04-16 平安科技(深圳)有限公司 Information push method, device, computer equipment and storage medium
CN112367246A (en) * 2020-10-30 2021-02-12 深圳壹账通智能科技有限公司 Message pushing method and device, electronic equipment and storage medium

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108810051A (en) * 2017-05-03 2018-11-13 西门子公司 Data transmission method and device
CN107948092A (en) * 2017-11-22 2018-04-20 用友金融信息技术股份有限公司 Real-time data acquisition method and real-time data acquisition system
CN110851473A (en) * 2018-07-25 2020-02-28 中兴通讯股份有限公司 Data processing method, device and system
CN112583899B (en) * 2020-12-02 2023-09-15 上海新氦类脑智能科技有限公司 Internet of things data acquisition system, method and edge computing equipment

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109617941A (en) * 2018-10-22 2019-04-12 中国平安财产保险股份有限公司 Data push method, device, computer equipment and computer readable storage medium
CN109635187A (en) * 2018-11-26 2019-04-16 平安科技(深圳)有限公司 Information push method, device, computer equipment and storage medium
CN112367246A (en) * 2020-10-30 2021-02-12 深圳壹账通智能科技有限公司 Message pushing method and device, electronic equipment and storage medium

Also Published As

Publication number Publication date
CN113873037A (en) 2021-12-31

Similar Documents

Publication Publication Date Title
CN108427613B (en) Abnormal interface positioning method and device, computer equipment and storage medium
CN111984228B (en) Interface document processing method and device, computer equipment and storage medium
CN113282513B (en) Interface test case generation method and device, computer equipment and storage medium
CN112395202B (en) Interface automation test method and device, computer equipment and storage medium
CN111045941B (en) Positioning method and device for user interface control and storage medium
CN110609618B (en) Man-machine conversation method and device, computer equipment and storage medium
CN113873037B (en) Data pushing method, device, computer equipment and storage medium
CN112486811A (en) Interface test method, device, equipment and medium
CN111061637B (en) Interface testing method, interface testing device and storage medium
CN104834643B (en) A kind of quick common gateway interface file analysis method and apparatus
CN113194448B (en) Bluetooth device testing method, testing terminal and readable storage medium
CN111371699B (en) Resource current limiting method and device, electronic equipment and storage medium
CN117614953A (en) Cloud asset information acquisition method and device, computer equipment and medium
CN111507447A (en) Label identification method and device
CN106850756B (en) Method and system for realizing communication between web page and local application
CN110618939A (en) Method and device for automatic test case management
CN114189880B (en) Method and device for generating occupation file for base station test
CN110968323B (en) Automatic generation method and system for APP function code list of mobile terminal
CN117648261A (en) Integrated test method, device, equipment and medium suitable for continuous integration
CN111708694A (en) Software detection method and device based on abstract interpretation, computer equipment and storage medium
CN112202632A (en) Message extraction method and device, electronic equipment and computer readable storage medium
CN117235497A (en) Information acquisition method, device, equipment and medium
CN113254027A (en) Method, system, equipment and storage medium for converting control program of semiconductor equipment
CN112631568A (en) Code generation method and device, intelligent terminal and storage medium
CN116756028A (en) Message interaction method, device, equipment and medium

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