CN111552464A - SDK generation method, device, equipment and medium - Google Patents

SDK generation method, device, equipment and medium Download PDF

Info

Publication number
CN111552464A
CN111552464A CN202010344025.9A CN202010344025A CN111552464A CN 111552464 A CN111552464 A CN 111552464A CN 202010344025 A CN202010344025 A CN 202010344025A CN 111552464 A CN111552464 A CN 111552464A
Authority
CN
China
Prior art keywords
interface
target
sdk
generating
restful
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
CN202010344025.9A
Other languages
Chinese (zh)
Other versions
CN111552464B (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 Hongyi Software Technology Co ltd
Original Assignee
Shanghai Hongyi Software 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 Hongyi Software Technology Co ltd filed Critical Shanghai Hongyi Software Technology Co ltd
Priority to CN202010344025.9A priority Critical patent/CN111552464B/en
Publication of CN111552464A publication Critical patent/CN111552464A/en
Application granted granted Critical
Publication of CN111552464B publication Critical patent/CN111552464B/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/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms
    • G06F8/315Object-oriented languages
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computing Systems (AREA)
  • Stored Programmes (AREA)
  • Devices For Executing Special Programs (AREA)

Abstract

The application discloses a method, a device, equipment and a medium for generating an SDK, which comprise the following steps: converting the service logic layer interface into a corresponding restful interface; generating a corresponding target interface according to the restful interface; the target interface is used for calling the restful interface; and generating the SDK of the target language by utilizing the target interface. Therefore, the service logic layer interface is directly converted into the corresponding restful interface, an interface layer used for packaging the restful interface in the existing program architecture is removed, then the corresponding target interface is generated, and finally the target interface is used for generating the SDK of the target language, so that the generation process of the SDK can be simplified, and the program development efficiency is improved.

Description

SDK generation method, device, equipment and medium
Technical Field
The present application relates to the field of programming technologies, and in particular, to a method, an apparatus, a device, and a medium for generating an SDK.
Background
In the current program layering framework, an interface layer is separately extracted, and when an interface is needed, the interface layer needs to be packaged once again, so that the workload of program Development is increased, and finally generated SDKs (Software Development Kit ) such as netsdk, java SDK and the like need to be packaged again based on published interfaces, and finally, unit testing is needed, so that the whole process is time-consuming.
Disclosure of Invention
In view of this, an object of the present application is to provide a method, an apparatus, a device and a medium for generating an SDK, which can simplify a generation process of the SDK, thereby improving program development efficiency. The specific scheme is as follows:
in a first aspect, the present application discloses an SDK generation method, including:
converting the service logic layer interface into a corresponding restful interface;
generating a corresponding target interface according to the restful interface; the target interface is used for calling the restful interface;
and generating the SDK of the target language by utilizing the target interface.
Optionally, the converting the service logic layer interface into a corresponding restful interface includes:
adding the service logic layer interface into an MVC controller;
and converting the method of the class corresponding to the service logic layer interface into an ACTION method so as to generate the corresponding restful interface.
Optionally, the generating the SDK in the target language by using the target interface includes:
and generating the SDK of the target language by using the target interface and a preset DTO model.
Optionally, the generating the SDK of the target language by using the target interface and the preset DTO model includes:
generating a target program code of a corresponding target language by using the target interface and the preset DTO model;
the implementation class of the target interface is transferred to an interceptor through a dynamic proxy technology, a corresponding restful interface request is initiated through target information in the interceptor, and json returned by the restful interface request is deserialized into a processing logic of a return value type of the current target interface;
and generating a corresponding SDK by the target program code and the interceptor.
Optionally, the generating the SDK in the target language by using the target interface includes:
and generating the SDK of the JAVA language or the SDK of the PYTHON language by using the target interface.
Optionally, the SDK generating method further includes:
and integrating the restful interface into a Swagger online document and generating a corresponding word document.
In a second aspect, the present application discloses an SDK generation apparatus, including:
the restful interface conversion module is used for converting the service logic layer interface into a corresponding restful interface;
the target interface generating module is used for generating a corresponding target interface according to the restful interface; the target interface is used for calling the restful interface;
and the SDK generating module is used for generating the SDK of the target language by utilizing the target interface.
Optionally, the SDK generating apparatus further includes:
and the document generating module is used for integrating the restful interface into a Swagger online document and generating a corresponding word document.
In a third aspect, the present application discloses an SDK generating device comprising a processor and a memory; wherein the content of the first and second substances,
the memory is used for storing a computer program;
the processor is configured to execute the computer program to implement the foregoing SDK generation method.
In a fourth aspect, the present application discloses a computer readable storage medium for storing a computer program, wherein the computer program, when executed by a processor, implements the aforementioned SDK generation method.
Therefore, the method and the device convert the service logic layer interface into the corresponding restful interface, and then generate the corresponding target interface according to the restful interface; and the target interface is used for calling the restful interface and finally generating the SDK of the target language by utilizing the target interface. Therefore, the service logic layer interface is directly converted into the corresponding restful interface, an interface layer used for packaging the restful interface in the existing program architecture is removed, then the corresponding target interface is generated, and finally the target interface is used for generating the SDK of the target language, so that the generation process of the SDK can be simplified, and the program development efficiency is improved.
Drawings
In order to more clearly illustrate the embodiments of the present application or the technical solutions in the prior art, the drawings needed to be used in the description of the embodiments or the prior art will be briefly introduced below, it is obvious that the drawings in the following description are only embodiments of the present application, and for those skilled in the art, other drawings can be obtained according to the provided drawings without creative efforts.
Fig. 1 is a flow chart of a method for generating an SDK according to the present disclosure;
fig. 2 is a flow chart of restful interface generation disclosed in the present application;
FIG. 3 is a flow chart of a specific SDK generation method disclosed herein;
FIG. 4 is a schematic diagram of a program hierarchy disclosed herein;
FIG. 5 is a flow chart of a specific SDK generation method disclosed herein;
FIG. 6 is a schematic diagram of a word interface document disclosed herein;
fig. 7 is a schematic structural diagram of an SDK generation apparatus disclosed in the present application;
fig. 8 is a block diagram of an SDK generation apparatus disclosed in the present application;
fig. 9 is a structural diagram of an electronic terminal disclosed in the present application.
Detailed Description
The technical solutions in 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 obvious that the described embodiments are only a part of the embodiments of the present application, 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 application.
In the current program layering framework, an interface layer is separately extracted, and when an interface is needed, the interface layer needs to be packaged once again, so that the workload of program Development is increased, and finally generated SDKs (Software Development Kit ) such as netsdk, java SDK and the like need to be packaged again based on published interfaces, and finally, unit testing is needed, so that the whole process is time-consuming. Therefore, the SDK generation scheme is provided, the generation process of the SDK can be simplified, and therefore the program development efficiency is improved.
Referring to fig. 1, the present application discloses an SDK generation method, including:
step S11: and converting the service logic layer interface into a corresponding restful interface.
In a specific implementation manner, this embodiment may add the service logic layer interface to an MVC (i.e., model view Controller) Controller; and converting the method of the class corresponding to the service logic layer interface into an ACTION method so as to generate the corresponding restful interface.
That is, the present embodiment may translate the service logical layer interface into the restful interface based on the MVC principle mechanism.
In the embodiment, the service logic layer interface is directly converted into the restful interface, that is, the service logic layer interface is directly converted into the restful interface, and in the program layered architecture, the layer may be referred to as an application service layer.
For example, referring to fig. 2, the application discloses a restful interface generation flowchart, where an iappervice interface is a service logic layer interface, and is added into an MVC controller, and a method of a class corresponding to the service logic layer interface is converted into an ACTION method and is analyzed into an MVC route, so that a method that an access to a certain address can request a current interface method is implemented to generate the corresponding restful interface.
Step S12: generating a corresponding target interface according to the restful interface; the target interface is used for calling the restful interface.
Step S13: and generating the SDK of the target language by utilizing the target interface.
In a specific implementation manner, the embodiments of the present application generate the SDK in the target language by using the target interface and a preset DTO (data transfer Object) model.
In this embodiment, in the program hierarchy, the application service interface layer of the application service layer includes the target interface and the preset DTO model, that is, only the target interface and the DTO model are defined in the application service interface layer, and no other business logic is written, so that the SDK corresponding to the target language is conveniently generated. The present embodiment may generate the SDK in the JAVA language or the SDK in the PYTHON language using the target interface.
In a specific implementation manner, generating a target program code of a corresponding target language by using the target interface and the preset DTO model; the implementation class of the target interface is transferred to an interceptor through a dynamic proxy technology, a corresponding restful interface request is initiated through target information in the interceptor, and json returned by the restful interface request is deserialized into a processing logic of a return value type of the current target interface; and generating a corresponding SDK by the target program code and the interceptor.
For example, referring to fig. 3, an embodiment of the present application discloses a specific SDK generation method flowchart, in which an application service interface layer (IAppService layer) of an application service layer directly generates java or other languages, a current layer only has a simple definition of a target interface and a model of dto, and has no other business logic, and java, python and other language codes can be simply generated. The program generation can be realized by utilizing some existing tools on the network or by writing the program by itself. After the generation, the implementation class of the target interface is realized through a dynamic proxy technology, and the implementation class is transferred to the interceptor, so that a request to the restful interface can be initiated through related information such as a method name, a parameter value, an annotation and the like in the interceptor. And deserializing the json returned by the request into a return value type of the current interface, specifically a DTO model, wherein the models of the relevant return values are all in an application service interface layer, thereby realizing the whole sdk.
And, the third party system can directly call the current service interface through the restful interface without the SDK. For example, referring to fig. 4, the present application discloses a program hierarchy architecture diagram.
Therefore, in the embodiment of the application, the service logic layer interface is converted into the corresponding restful interface, and then the corresponding target interface is generated according to the restful interface; and the target interface is used for calling the restful interface and finally generating the SDK of the target language by utilizing the target interface. Therefore, the service logic layer interface is directly converted into the corresponding restful interface, an interface layer used for packaging the restful interface in the existing program architecture is removed, then the corresponding target interface is generated, and finally the target interface is used for generating the SDK of the target language, so that the generation process of the SDK can be simplified, and the program development efficiency is improved.
Referring to fig. 5, an embodiment of the present application discloses a specific SDK generation method, including:
step S21: and converting the service logic layer interface into a corresponding restful interface.
Step S22: generating a corresponding target interface according to the restful interface; the target interface is used for calling the restful interface.
Step S23: and generating the SDK of the target language by utilizing the target interface.
For the specific processes of the steps S21 to S23, reference may be made to the corresponding contents disclosed in the foregoing embodiments, and details are not repeated here.
Step S24: and integrating the restful interface into a Swagger online document and generating a corresponding word document.
In a specific implementation mode, a well-defined word document can be generated based on the annotation of the AppService layer to the method.
For example, referring to FIG. 6, the present application discloses a schematic diagram of a word interface document.
It can be seen that, in the embodiment, a whole set of server interface development is standardized, and a development process of sdk generation and document generation is realized, wherein an application service layer generates a restful interface, generates a standard use document without compiling interface documents one by one, and generates sdk; the whole scheme greatly lightens the workload of interface developers, sdk developers, interface document writers and testers, and improves the working efficiency.
Referring to fig. 7, fig. 7 is a diagram illustrating an SDK generating apparatus disclosed in the present application, including:
a restful interface conversion module 11, configured to convert a service logic layer interface into a corresponding restful interface;
a target interface generating module 12, configured to generate a corresponding target interface according to the restful interface; the target interface is used for calling the restful interface;
and the SDK generating module 13 is configured to generate an SDK in the target language by using the target interface.
Therefore, in the embodiment of the application, the service logic layer interface is converted into the corresponding restful interface, and then the corresponding target interface is generated according to the restful interface; and the target interface is used for calling the restful interface and finally generating the SDK of the target language by utilizing the target interface. Therefore, the service logic layer interface is directly converted into the corresponding restful interface, an interface layer used for packaging the restful interface in the existing program architecture is removed, then the corresponding target interface is generated, and finally the target interface is used for generating the SDK of the target language, so that the generation process of the SDK can be simplified, and the program development efficiency is improved.
The restful interface conversion module 11 is specifically configured to add the service logic layer interface to the MVC controller; and converting the method of the class corresponding to the service logic layer interface into an ACTION method so as to generate the corresponding restful interface.
The SDK generating module 13 is specifically configured to generate an SDK in a target language by using the target interface and a preset DTO model.
Further, the SDK generating module 13 is specifically configured to generate a target program code of a corresponding target language from the target interface and the preset DTO model; the implementation class of the target interface is transferred to an interceptor through a dynamic proxy technology, a corresponding restful interface request is initiated through target information in the interceptor, and json returned by the restful interface request is deserialized into a processing logic of a return value type of the current target interface; and generating a corresponding SDK by the target program code and the interceptor.
The SDK generating module 13 is specifically configured to generate an SDK in JAVA language or an SDK in PYTHON language by using the target interface.
The SDK generating apparatus further includes:
and the document generating module is used for integrating the restful interface into a Swagger online document and generating a corresponding word document.
Referring to fig. 8, an embodiment of the present application discloses an SDK generation device, which includes a processor 21 and a memory 22; wherein, the memory 22 is used for saving computer programs; the processor 21 is configured to execute the computer program to implement the SDK generation method disclosed in the foregoing embodiment.
For the specific process of the SDK generation method, reference may be made to corresponding contents disclosed in the foregoing embodiments, and details are not repeated here.
Referring to fig. 9, an embodiment of the present application discloses an electronic terminal 20, which includes a processor 21 and a memory 22 disclosed in the foregoing embodiments. For the steps that the processor 21 can specifically execute, reference may be made to corresponding contents disclosed in the foregoing embodiments, and details are not described herein again.
Further, the electronic terminal 20 in this embodiment may further specifically include a power supply 23, a communication interface 24, an input/output interface 25, and a communication bus 26; the power supply 23 is configured to provide a working voltage for each hardware device on the terminal 20; the communication interface 24 can create a data transmission channel with an external device for the terminal 20, and a communication protocol followed by the communication interface is any communication protocol applicable to the technical solution of the present application, and is not specifically limited herein; the input/output interface 25 is configured to obtain external input data or output data to the outside, and a specific interface type thereof may be selected according to a specific application requirement, which is not specifically limited herein.
Further, an embodiment of the present application also discloses a computer-readable storage medium for storing a computer program, wherein the computer program, when executed by a processor, implements the SDK generation method disclosed in the foregoing embodiment.
For the specific process of the SDK generation method, reference may be made to corresponding contents disclosed in the foregoing embodiments, and details are not repeated here.
The embodiments are described in a progressive manner, each embodiment focuses on differences from other embodiments, and the same or similar parts among the embodiments are referred to each other. The device disclosed by the embodiment corresponds to the method disclosed by the embodiment, so that the description is simple, and the relevant points can be referred to the method part for description.
The steps of a method or algorithm described in connection with the embodiments disclosed herein may be embodied directly in hardware, in a software module executed by a processor, or in a combination of the two. A software module may reside in Random Access Memory (RAM), memory, Read Only Memory (ROM), electrically programmable ROM, electrically erasable programmable ROM, registers, hard disk, a removable disk, a CD-ROM, or any other form of storage medium known in the art.
The above detailed description is given to a method, an apparatus, a device, and a medium for generating an SDK provided by the present application, and a specific example is applied in the present application to explain the principle and the implementation of the present application, and the description of the above embodiment is only used to help understanding the method and the core idea of the present application; meanwhile, for a person skilled in the art, according to the idea of the present application, there may be variations in the specific embodiments and the application scope, and in summary, the content of the present specification should not be construed as a limitation to the present application.

Claims (10)

1. An SDK generation method, comprising:
converting the service logic layer interface into a corresponding restful interface;
generating a corresponding target interface according to the restful interface; the target interface is used for calling the restful interface;
and generating the SDK of the target language by utilizing the target interface.
2. The method of claim 1, wherein translating the service logic layer interface into a corresponding restful interface comprises:
adding the service logic layer interface into an MVC controller;
and converting the method of the class corresponding to the service logic layer interface into an ACTION method so as to generate the corresponding restful interface.
3. The method of claim 1, wherein generating the SDK in the target language using the target interface comprises:
and generating the SDK of the target language by using the target interface and a preset DTO model.
4. The method of claim 3, wherein the generating the SDK in the target language using the target interface and the preset DTO model comprises:
generating a target program code of a corresponding target language by using the target interface and the preset DTO model;
the implementation class of the target interface is transferred to an interceptor through a dynamic proxy technology, a corresponding restful interface request is initiated through target information in the interceptor, and json returned by the restful interface request is deserialized into a processing logic of a return value type of the current target interface;
and generating a corresponding SDK by the target program code and the interceptor.
5. The method of claim 1, wherein generating the SDK in the target language using the target interface comprises:
and generating the SDK of the JAVA language or the SDK of the PYTHON language by using the target interface.
6. The SDK generation method of any one of claims 1 to 5, further comprising:
and integrating the restful interface into a Swagger online document and generating a corresponding word document.
7. An SDK generation apparatus, comprising:
the restful interface conversion module is used for converting the service logic layer interface into a corresponding restful interface;
the target interface generating module is used for generating a corresponding target interface according to the restful interface; the target interface is used for calling the restful interface;
and the SDK generating module is used for generating the SDK of the target language by utilizing the target interface.
8. The SDK generation apparatus of claim 7, further comprising:
and the document generating module is used for integrating the restful interface into a Swagger online document and generating a corresponding word document.
9. An SDK generating device comprising a processor and a memory; wherein the content of the first and second substances,
the memory is used for storing a computer program;
the processor for executing the computer program to implement the SDK generation method of any one of claims 1 to 6.
10. A computer-readable storage medium for storing a computer program, wherein the computer program, when executed by a processor, implements the SDK generation method of any one of claims 1 to 6.
CN202010344025.9A 2020-04-27 2020-04-27 SDK generation method, device, equipment and medium Active CN111552464B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010344025.9A CN111552464B (en) 2020-04-27 2020-04-27 SDK generation method, device, equipment and medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010344025.9A CN111552464B (en) 2020-04-27 2020-04-27 SDK generation method, device, equipment and medium

Publications (2)

Publication Number Publication Date
CN111552464A true CN111552464A (en) 2020-08-18
CN111552464B CN111552464B (en) 2024-05-31

Family

ID=72004077

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010344025.9A Active CN111552464B (en) 2020-04-27 2020-04-27 SDK generation method, device, equipment and medium

Country Status (1)

Country Link
CN (1) CN111552464B (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111931087A (en) * 2020-09-15 2020-11-13 新华三半导体技术有限公司 Webpage request processing method and device
CN112711405A (en) * 2020-12-28 2021-04-27 山东浪潮通软信息科技有限公司 Method, equipment and storage medium for generating add-delete-modify-check application program interface
CN115934158A (en) * 2023-02-23 2023-04-07 云筑信息科技(成都)有限公司 Personalized configuration method based on service identity

Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090138893A1 (en) * 2007-11-23 2009-05-28 Ketera Technologies Inc. Interceptor Framework Using Java Dynamic Proxies
US20140157228A1 (en) * 2012-11-30 2014-06-05 Red Hat Israel, Ltd. Method and system for automatically generating a restful web service software development kit client
CN105718251A (en) * 2014-12-03 2016-06-29 苏宁云商集团股份有限公司 Multilanguage SDK (software development kit) automatic implementation method and system
CN105867948A (en) * 2016-04-26 2016-08-17 江苏物联网研究发展中心 WEB development method based on AJAX (Asynchronous JavaScript and XML) and Spring MVC (model view controller)
CN107483559A (en) * 2017-07-27 2017-12-15 北京小米移动软件有限公司 The offer method and device of SDK services
CN109783072A (en) * 2019-01-23 2019-05-21 深圳智链物联科技有限公司 Method for processing business, device, terminal device and computer readable storage medium
CN109857404A (en) * 2019-01-11 2019-06-07 平安科技(深圳)有限公司 The packaging method and device of SDK interface, storage medium, electronic equipment
CN109960501A (en) * 2019-02-18 2019-07-02 青岛聚好联科技有限公司 Application APP framework model, processing method and terminal device
CN110162296A (en) * 2019-04-15 2019-08-23 平安科技(深圳)有限公司 Generation method, device and the terminal device of application programming interface document
WO2020024458A1 (en) * 2018-08-01 2020-02-06 平安科技(深圳)有限公司 Service interface management method and apparatus, and storage medium and computer device
CN110808840A (en) * 2019-10-30 2020-02-18 网易(杭州)网络有限公司 Service processing method and device, electronic equipment and storage medium
CN111026634A (en) * 2019-09-27 2020-04-17 珠海随变科技有限公司 Interface automation test system, method, device and storage medium

Patent Citations (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090138893A1 (en) * 2007-11-23 2009-05-28 Ketera Technologies Inc. Interceptor Framework Using Java Dynamic Proxies
US20140157228A1 (en) * 2012-11-30 2014-06-05 Red Hat Israel, Ltd. Method and system for automatically generating a restful web service software development kit client
CN105718251A (en) * 2014-12-03 2016-06-29 苏宁云商集团股份有限公司 Multilanguage SDK (software development kit) automatic implementation method and system
CN105867948A (en) * 2016-04-26 2016-08-17 江苏物联网研究发展中心 WEB development method based on AJAX (Asynchronous JavaScript and XML) and Spring MVC (model view controller)
CN107483559A (en) * 2017-07-27 2017-12-15 北京小米移动软件有限公司 The offer method and device of SDK services
WO2020024458A1 (en) * 2018-08-01 2020-02-06 平安科技(深圳)有限公司 Service interface management method and apparatus, and storage medium and computer device
CN109857404A (en) * 2019-01-11 2019-06-07 平安科技(深圳)有限公司 The packaging method and device of SDK interface, storage medium, electronic equipment
CN109783072A (en) * 2019-01-23 2019-05-21 深圳智链物联科技有限公司 Method for processing business, device, terminal device and computer readable storage medium
CN109960501A (en) * 2019-02-18 2019-07-02 青岛聚好联科技有限公司 Application APP framework model, processing method and terminal device
CN110162296A (en) * 2019-04-15 2019-08-23 平安科技(深圳)有限公司 Generation method, device and the terminal device of application programming interface document
CN111026634A (en) * 2019-09-27 2020-04-17 珠海随变科技有限公司 Interface automation test system, method, device and storage medium
CN110808840A (en) * 2019-10-30 2020-02-18 网易(杭州)网络有限公司 Service processing method and device, electronic equipment and storage medium

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
谢振华;: "基于Asp.net技术的网站开发架构设计", 电脑知识与技术, no. 02 *
风车车的大表哥: "javaee-应用程序组件-分层模型与分层架构", Retrieved from the Internet <URL:https://blog.csdn.net/matrixbbs/article/details/89672155> *

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111931087A (en) * 2020-09-15 2020-11-13 新华三半导体技术有限公司 Webpage request processing method and device
CN112711405A (en) * 2020-12-28 2021-04-27 山东浪潮通软信息科技有限公司 Method, equipment and storage medium for generating add-delete-modify-check application program interface
CN112711405B (en) * 2020-12-28 2022-10-25 浪潮通用软件有限公司 Method, equipment and storage medium for generating add-delete-modify-check application program interface
CN115934158A (en) * 2023-02-23 2023-04-07 云筑信息科技(成都)有限公司 Personalized configuration method based on service identity

Also Published As

Publication number Publication date
CN111552464B (en) 2024-05-31

Similar Documents

Publication Publication Date Title
CN111552464B (en) SDK generation method, device, equipment and medium
CN110955410B (en) Code automatic generation method, device, equipment and medium
CN104156313A (en) Method for automatically generating Web service testing case
CN111078555B (en) Test file generation method, system, server and storage medium
CN109597618B (en) Program development method, program development device, computer device, and storage medium
JP2022545489A (en) Smart contract client program generation method, system, device, and medium
CN110673856A (en) Data processing method and device and machine-readable storage medium
CN107592358A (en) Application programming interfaces call method and device based on HTTP service
CN112130830A (en) Interface generation method and device and electronic equipment
CN116227505A (en) Internationalization file translation method, device, equipment and medium
CN113434147B (en) Method and device for analyzing message based on ProtoBuf protocol
CN116483481A (en) Firmware library calling method, device, equipment and storage medium
CN111124924A (en) API (application program interface) deployment method and device, electronic equipment and storage medium
WO2022099913A1 (en) Interface configuration method and apparatus, and device and medium
CN114827297A (en) Protocol adaptation method, device, equipment and storage medium
US11797277B2 (en) Neural network model conversion method server, and storage medium
CN111782196A (en) MVP architecture-based development method and device
CN117270838B (en) Method, device, equipment and medium for generating universal formula script
CN112052012B (en) XSLT and XSD-based code automatic generation method and equipment
CN111752602B (en) Method for generating protobuf file running in GO language
JP2002287961A (en) System and method for developing service application
CN117687635A (en) Method and device for applying style file and electronic equipment
CN118075114A (en) Method and device for creating proprietary network, model converter and storage medium
CN114003211A (en) Sun code generation and analysis method and device, electronic equipment and medium
CN116011405A (en) JSON data conversion 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