CN116360752B - Function programming method oriented to java, intelligent terminal and storage medium - Google Patents

Function programming method oriented to java, intelligent terminal and storage medium Download PDF

Info

Publication number
CN116360752B
CN116360752B CN202310645793.1A CN202310645793A CN116360752B CN 116360752 B CN116360752 B CN 116360752B CN 202310645793 A CN202310645793 A CN 202310645793A CN 116360752 B CN116360752 B CN 116360752B
Authority
CN
China
Prior art keywords
service
application module
function
component
java
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
CN202310645793.1A
Other languages
Chinese (zh)
Other versions
CN116360752A (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.)
Zhejiang Guorui Digital Technology Co ltd
Qiantang Science and Technology Innovation Center
Original Assignee
Zhejiang Guorui Digital Technology Co ltd
Qiantang Science and Technology Innovation Center
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 Zhejiang Guorui Digital Technology Co ltd, Qiantang Science and Technology Innovation Center filed Critical Zhejiang Guorui Digital Technology Co ltd
Priority to CN202310645793.1A priority Critical patent/CN116360752B/en
Publication of CN116360752A publication Critical patent/CN116360752A/en
Application granted granted Critical
Publication of CN116360752B publication Critical patent/CN116360752B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/31Programming languages or programming paradigms
    • G06F8/315Object-oriented languages
    • 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

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Computing Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

The application provides a java-oriented functional programming method, an intelligent terminal and a storage medium, wherein the java-oriented functional programming method comprises the steps of deconstructing a first service or application module and obtaining at least one functional unit of the first service or application module; annotating the at least one function unit to obtain at least one corresponding function component; responding to a connection of a second service or application module, and acquiring a requirement mark of the second service or application module; retrieving the at least one function component according to the demand label; and establishing a link vector pointing to the matched function component based on the second service or application module for the second service or application module to call. According to the application, by decoupling the existing java service or java application module, the different service or application modules are recombined, so that the flexibility, convenience and processing efficiency of java modularized programming are effectively improved, and the user experience is improved.

Description

Function programming method oriented to java, intelligent terminal and storage medium
Technical Field
The application relates to the technical field of software programming, in particular to a java-oriented functional programming method, an intelligent terminal and a storage medium.
Background
With the advent of the internet big data age, the business demands have changed faster and faster, the scale and complexity of application systems have been continuously increased, and the demands of users for obtaining convenient, high-quality and diversified services have been increasing. Accordingly, programmers often involve a variety of different modular services during operation.
In the course of conception and implementation of the present application, the applicant has found at least the following problems: the same function is repeatedly used in different business modules in a modular programming process that handles different business content. Due to the restriction of the traditional programming technology architecture and the constraint of the programming thought, when any local function modification or service variation occurs in the existing architecture system, the whole module needs to be recompiled and deployed, and the processing efficiency is seriously affected. Thus, simplifying the flexible implementation of modular programming is a problem that needs to be addressed by researchers in the field.
Disclosure of Invention
In order to alleviate the above problems, the present application provides a java-oriented functional programming method, including:
deconstructing a first service or application module and acquiring at least one function unit of the first service or application module;
annotating the at least one function unit to obtain at least one corresponding function component;
responding to a connection of a second service or application module, and acquiring a requirement mark of the second service or application module;
retrieving the at least one function component according to the demand label;
and establishing a link vector pointing to the matched function component based on the second service or application module for the second service or application module to call.
Optionally, the step of deconstructing the first service or application module and acquiring at least one function unit of the first service or application module includes:
and scanning the first service or application module, and extracting code blocks forming each function unit.
Optionally, in the process of annotating the at least one function unit and obtaining the corresponding at least one function component, the method in the at least one function unit is individually packaged into the function component by marking the inlet protocol and the outlet protocol of each function unit, and the function component is classified into a preset component pool.
Optionally, the preset component pool includes a plurality of functional classes; and in the process of classifying into the preset component pool, classifying each function component into a corresponding function class according to the label marked for each function component.
Optionally, in the process of responding to the connection of the second service or application module and obtaining the requirement label of the second service or application module, the function class required by the second service or application module is obtained by reading the label table of the second service or application module.
Optionally, in the component pool, each functional class includes a plurality of functional components, and each functional component in the same functional class has a different weight; and calling the function component with the highest weight in the matched function class in the process of calling the component pool and matching the function class according to the label of each function component.
Optionally, the step of establishing a link vector pointing to the matched function component for the second service or application module to call includes:
based on the matched function components, a processing interface is defined, wherein the processing interface is consistent with the signature of the matched function components, and the signature comprises an interface name, a parameter type and a return type.
Optionally, in the process of calling the second service or the application module, according to the function class of the function component, the matched function component is executed based on the signature of the processing interface.
The application also provides an intelligent terminal, which comprises a processor and a memory;
the memory stores a computer program which when executed by the processor implements the steps of the java oriented functional programming method described above.
The application also provides a storage medium, on which a computer program is stored, which when being executed by a processor implements the steps of the java oriented functional programming method as described above.
As described above, the java-oriented function programming method, the intelligent terminal and the storage medium provided by the application have the advantages that the existing service or application module is decoupled to form the shared component pool so that the new service or application module can call the corresponding function component, so that the different service or application modules can be rearranged and combined, the flexibility, convenience and processing efficiency of modularized programming are effectively improved, and the user experience is improved.
Drawings
The accompanying drawings, which are incorporated in and constitute a part of this specification, illustrate embodiments consistent with the application and together with the description, serve to explain the principles of the application. In order to more clearly illustrate the technical solutions of the embodiments of the present application, the drawings that are needed in the description of the embodiments will be briefly described below, and it will be obvious to those skilled in the art that other drawings can be obtained from these drawings without inventive effort.
FIG. 1 is a flowchart of a java-oriented functional programming method according to an embodiment of the present application.
FIG. 2 is a schematic diagram of a functional programming implementation of an embodiment of the present application.
The achievement of the objects, functional features and advantages of the present application will be further described with reference to the accompanying drawings, in conjunction with the embodiments. Specific embodiments of the present application have been shown by way of the above drawings and will be described in more detail below. The drawings and the written description are not intended to limit the scope of the inventive concepts in any way, but rather to illustrate the inventive concepts to those skilled in the art by reference to the specific embodiments.
Detailed Description
Reference will now be made in detail to exemplary embodiments, examples of which are illustrated in the accompanying drawings. When the following description refers to the accompanying drawings, the same numbers in different drawings refer to the same or similar elements, unless otherwise indicated. The implementations described in the following exemplary examples do not represent all implementations consistent with the application. Rather, they are merely examples of apparatus and methods consistent with aspects of the application as detailed in the accompanying claims.
It should be noted that, in this document, 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, the element defined by the phrase "comprising one … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element, and furthermore, elements having the same name in different embodiments of the application may have the same meaning or may have different meanings, the particular meaning of which is to be determined by its interpretation in this particular embodiment or by further combining the context of this particular embodiment.
It should be noted that, in this document, step numbers such as S10 and S20 are adopted, and the purpose of the present application is to more clearly and briefly describe the corresponding content, and not to constitute a substantial limitation on the sequence, and those skilled in the art may execute S20 first and then execute S10 when implementing the present application, which is within the scope of protection of the present application.
It should be understood that the specific embodiments described herein are for purposes of illustration only and are not intended to limit the scope of the application.
The present application will be described in detail with reference to the accompanying drawings.
Java has some features common to most programming languages and is deliberately designed for use in the internet's distributed environment. Java has a form and feel similar to the C++ language, but is easier to use than the C++ language and uses an object oriented approach thoroughly in programming. The present application provides a java-oriented functional programming method, and fig. 1 is a flowchart of a java-oriented functional programming method according to an embodiment of the present application.
Referring to fig. 1, a java-oriented functional programming method includes:
s10: and deconstructing a first service or application module and acquiring at least one function unit of the first service or application module.
In an embodiment, the java-oriented functional programming method is a program code decoupling scheme realized by matching with a Spring container technology on the basis of java 8. Illustratively, in the java architecture, the functions provide the minimum unit of one module, which is a different combination of functions for a specific application scenario. And decoupling all related modules to obtain function units corresponding to the functional methods. The first service or application module is illustratively a communication module capable of deconstructing a plurality of communication function units, such as short message function units.
S20: annotating the at least one function unit to obtain at least one corresponding function component.
FIG. 2 is a schematic diagram of a functional programming implementation of an embodiment of the present application.
Referring to FIG. 2, code blocks of each relevant module are illustratively scanned, and each functional method is individually packaged into function components by way of annotation or labeling.
S30: and responding to the connection of the second service or application module, and acquiring the requirement label of the second service or application module.
For example, when a new functional application is required by another service or application module, the required functions or requirements of the communication protocol may be marked first so that the interface component knows the functional requirements of the service or application module. Illustratively, the second service or application module is a travel industry application module that needs to be applied to short message service functions.
S40: and retrieving the at least one function component according to the requirement label.
With continued reference to FIG. 2, illustratively, after component pools of function components are assembled, a search match may be made based on the functional requirements of other business or application modules.
S50: and establishing a link vector pointing to the matched function component based on the second service or application module for the second service or application module to call.
With continued reference to FIG. 2, illustratively, after matching to the appropriate function component, a call interface may be established for the currently required business or application module so that the business or application module calls the matching function component for execution during execution. Illustratively, the travel industry application module may call the short message function component directly from the function pool when needed, thereby implementing the short message service function.
The shared component pool is built by decoupling the existing service or application modules so that the new service or application modules call the corresponding function components, and the different service or application modules are matched and combined again, so that the flexibility, convenience and processing efficiency of modularized programming are effectively improved, and the user experience is improved.
Optionally, the step of deconstructing the first service or application module and acquiring at least one function unit of the first service or application module includes:
and scanning the first service or application module, and extracting code blocks forming each function unit.
The extracted code blocks may be, for example, common part codes, which may be codes for realizing a certain function or codes for certain steps. Currently, each automation test engineer needs to develop an automation test engineering, and more or less part of code blocks with the same or similar logic exist in each automation test engineering, and the code blocks can be extracted to form a service interface; therefore, the repeated code writing can be replaced by only calling the corresponding service interface in the engineering of all automatic test engineers, and the labor cost is reduced.
Optionally, in the process of annotating the at least one function unit and obtaining the corresponding at least one function component, the method in the at least one function unit is individually packaged into the function component by marking the inlet protocol and the outlet protocol of each function unit, and the function component is classified into a preset component pool.
In the process of extracting the code blocks forming each function unit and packaging the function units into the function components, the code blocks can be firstly obtained through a java file entry, and input parameters and output parameters which are input are received; and then, according to the input parameters and the output parameters, the code blocks are subjected to service so as to generate corresponding service interfaces. The server interface provides a java file entry as a unified entry, and when a code block needs to be extracted as the server interface, the code block is written in the java file entry, and the input and output parameters are edited; after the frame system receives the code blocks and the input and output parameters, the frame system automatically completes the setting, construction, automatic release and the like of the service layer.
Optionally, the preset component pool includes a plurality of functional classes. Illustratively, each short message function class may include different function components provided by different service providers.
Optionally, in the process of classifying into the preset component pool, classifying each function component into a corresponding function class according to the label marked for each function component.
For example, when a short message function is newly deconstructed, the label of the short message function needs to be functionally labeled in the packaging process. In the process of classifying into a preset component pool, the newly packaged function components can be classified into short message function classes according to the labels of the short message functions.
Optionally, in the process of responding to the connection of the second service or application module and obtaining the requirement label of the second service or application module, the function class required by the second service or application module is obtained by reading the label table of the second service or application module.
For example, when other services or application modules need to call a specific function class function component, service processing labels can be advanced, and the required functions or communication protocols can be declared.
Optionally, in the component pool, each functional class includes a plurality of functional components, and each functional component in the same functional class has a different weight; and calling the function component with the highest weight in the matched function class in the process of calling the component pool and matching the function class according to the label of each function component.
Illustratively, in the short message function classes in the preset component pool, each short message function class may include different function components provided by different service providers. Different weight values are respectively given to different short message functions. When other services or applications need to call the short message function components under the short message function class, the function component with the highest weight is directly called. In other embodiments, the function components of other weight values may be flexibly selected according to a specific algorithm, so as to adapt to the actual requirement situation of the current service or application module, which is not limited in the present application.
Optionally, the step of establishing a link vector pointing to the matched function component for the second service or application module to call includes:
based on the matched function components, a processing interface is defined, wherein the processing interface is consistent with the signature of the matched function components, and the signature comprises an interface name, a parameter type and a return type.
Illustratively, since each service or application module corresponds to a data node and process that often has analogically quantified parameter constraints, the data in the service data set may be categorized separately by defining a template for a standardized processing interface. The created processing interface may include the name and attributes of the class, and can define the implementation methods required for each processing implementation class, as well as the method parameters and return types required to determine each implementation method. Each signature content of the processing interface can be defined respectively, specific configuration can be carried out on the realization of each node respectively, and a call vector for realizing the interface is created.
Optionally, in the process of calling the second service or the application module, according to the function class of the function component, the matched function component is executed based on the signature of the processing interface.
Optionally, according to the registration of the labels of multiple function components in the component pool, a registry of the component pool can be established first, so that other services or application modules can be searched when required to be invoked. In the execution process of other business or application modules, the signature content of the processing interface is read when the corresponding function component needs to be called, and the labels of the corresponding function component are searched based on the registry of the component pool according to specific configuration in the signature content so as to determine that the corresponding function component is executed.
The application also provides an intelligent terminal, which comprises a processor and a memory;
the memory stores a computer program which when executed by the processor implements the steps of the java oriented functional programming method described above.
In an embodiment, the java-oriented functional programming method is a program code decoupling scheme realized by matching with a Spring container technology on the basis of java 8. It is mainly used in complex and large projects, so that the user can reduce the granularity of the system from the object level to the function level. And an efficient and safe scheme is realized, so that the development of the software program codes is more orderly. Maintainability and expansibility of software program code development are also optimized. Experiments prove that after the intelligent terminal uses the scheme, the overall development and maintenance efficiency is improved by about 30%.
The application also provides a storage medium, on which a computer program is stored, which when being executed by a processor implements the steps of the java oriented functional programming method as described above.
As described above, the function programming method, the intelligent terminal and the storage medium for java provided by the application have the advantages that the existing java service or java application module is decoupled, the shared component pool is built, so that the new java service or java application module can call the corresponding function component, the reconfiguration combination among different service or application modules is realized, the flexibility, convenience and processing efficiency of java modularized programming are effectively improved, and the user experience is improved.
The embodiments of the intelligent terminal and the storage medium provided by the application can include all technical features of any of the embodiments of the interaction method, and the expansion and explanation contents of the description are basically the same as those of each embodiment of the method, and are not repeated here.
Embodiments of the present application also provide a computer program product comprising computer program code which, when run on a computer, causes the computer to perform the method as in the various possible embodiments described above.
The embodiment of the application also provides a chip, which comprises a memory and a processor, wherein the memory is used for storing a computer program, and the processor is used for calling and running the computer program from the memory, so that the device provided with the chip executes the method in the various possible implementation manners.
It can be understood that the above scenario is merely an example, and does not constitute a limitation on the application scenario of the technical solution provided by the embodiment of the present application, and the technical solution of the present application may also be applied to other scenarios. For example, as one of ordinary skill in the art can know, with the evolution of the system architecture and the appearance of new service scenarios, the technical solution provided by the embodiment of the present application is also applicable to similar technical problems.
The foregoing embodiment numbers of the present application are merely for the purpose of description, and do not represent the advantages or disadvantages of the embodiments.
The steps in the method of the embodiment of the application can be sequentially adjusted, combined and deleted according to actual needs.
The units in the device of the embodiment of the application can be combined, divided and deleted according to actual needs.
In the present application, the same or similar term concept, technical solution and/or application scenario description will be generally described in detail only when first appearing and then repeatedly appearing, and for brevity, the description will not be repeated generally, and in understanding the present application technical solution and the like, reference may be made to the previous related detailed description thereof for the same or similar term concept, technical solution and/or application scenario description and the like which are not described in detail later.
In the present application, the descriptions of the embodiments are emphasized, and the details or descriptions of the other embodiments may be referred to.
The technical features of the technical scheme of the application can be arbitrarily combined, and all possible combinations of the technical features in the above embodiment are not described for the sake of brevity, however, as long as there is no contradiction between the combinations of the technical features, the application shall be considered as the scope of the description of the application.
From the above description of the embodiments, it will be clear to those skilled in the art that the above-described embodiment method may be implemented by means of software plus a necessary general hardware platform, but of course may also be implemented by means of hardware, but in many cases the former is a preferred embodiment. Based on such understanding, the technical solution of the present application may be embodied essentially or in a part contributing to the prior art in the form of a software product stored in a storage medium (e.g. ROM/RAM, magnetic disk, optical disk) as above, comprising instructions for causing a terminal device (which may be a mobile phone, a computer, a server, a controlled terminal, or a network device, etc.) to perform the method of each embodiment of the present application.
In the above embodiments, it may be implemented in whole or in part by software, hardware, firmware, or any combination thereof. When implemented in software, may be implemented in whole or in part in the form of a computer program product. The computer program product includes one or more computer instructions. When the computer program instructions are loaded and executed on a computer, the processes or functions in accordance with embodiments of the present application are produced in whole or in part. The computer may be a general purpose computer, a special purpose computer, a network of computers, or other programmable devices. The computer instructions may be stored in a storage medium or transmitted from one storage medium to another storage medium, for example, from one website, computer, server, or data center to another website, computer, server, or data center by a wired (e.g., coaxial cable, fiber optic, digital subscriber line), or wireless (e.g., infrared, wireless, microwave, etc.) means. The storage media may be any available media that can be accessed by a computer or a data storage device such as a server, data center, or the like that contains an integration of one or more available media. Usable media may be magnetic media (e.g., floppy disks, storage disks, magnetic tape), optical media (e.g., DVD), or semiconductor media (e.g., solid State Disk (SSD)), among others.
The foregoing description is only of the preferred embodiments of the present application, and is not intended to limit the scope of the application, but rather is intended to cover any equivalents of the structures or equivalent processes disclosed herein or in the alternative, which may be employed directly or indirectly in other related arts.

Claims (7)

1. The java-oriented functional programming method is characterized by comprising the following steps of:
deconstructing a first service or application module and acquiring at least one function unit of the first service or application module;
annotating the at least one function unit to obtain at least one corresponding function component;
responding to a connection of a second service or application module, and acquiring a requirement mark of the second service or application module;
retrieving the at least one function component according to the demand label;
establishing a link vector pointing to the matched function component based on the second service or application module so as to be called by the second service or application module;
the annotating the at least one function unit, and in the process of obtaining the corresponding at least one function component, independently packaging the method in the at least one function unit into the function component by marking an inlet protocol and an outlet protocol for each function unit, and classifying the function component into a preset component pool;
the preset component pool comprises a plurality of functional classes; in the process of classifying into a preset component pool, classifying each function component into a corresponding function class according to the label marked on each function component;
the step of establishing a link vector pointing to the matched function component based on the second service or application module for the second service or application module to call comprises the following steps:
based on the matched function components, a processing interface is defined, wherein the processing interface is consistent with the signature of the matched function components, and the signature comprises an interface name, a parameter type and a return type.
2. The java oriented functional programming method as claimed in claim 1, wherein said step of deconstructing a first service or application module and obtaining at least one functional unit of said first service or application module comprises:
and scanning the first service or application module, and extracting code blocks forming each function unit.
3. The java-oriented functional programming method as claimed in claim 2, wherein in the process of obtaining the requirement label of the second service or application module in response to connecting the second service or application module, the function class required by the second service or application module is obtained by reading a label table of the second service or application module.
4. A java oriented functional programming method as claimed in claim 3, characterized in that in said pool of components, each functional class comprises a plurality of functional components, each functional component in the same functional class having a different weight; and calling the function component with the highest weight in the matched function class in the process of calling the component pool and matching the function class according to the label of each function component.
5. The java oriented functional programming method of claim 4, wherein said matching functional component is executed based on a signature of said processing interface according to said functional class of said functional component during said second service or application module invocation.
6. An intelligent terminal is characterized by comprising a processor and a memory;
the memory stores a computer program which, when executed by the processor, implements the steps of the java oriented functional programming method as claimed in any one of claims 1-5.
7. A storage medium having stored thereon a computer program which, when executed by a processor, implements the steps of the java oriented functional programming method of any of claims 1-5.
CN202310645793.1A 2023-06-02 2023-06-02 Function programming method oriented to java, intelligent terminal and storage medium Active CN116360752B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202310645793.1A CN116360752B (en) 2023-06-02 2023-06-02 Function programming method oriented to java, intelligent terminal and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202310645793.1A CN116360752B (en) 2023-06-02 2023-06-02 Function programming method oriented to java, intelligent terminal and storage medium

Publications (2)

Publication Number Publication Date
CN116360752A CN116360752A (en) 2023-06-30
CN116360752B true CN116360752B (en) 2023-08-22

Family

ID=86929073

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202310645793.1A Active CN116360752B (en) 2023-06-02 2023-06-02 Function programming method oriented to java, intelligent terminal and storage medium

Country Status (1)

Country Link
CN (1) CN116360752B (en)

Citations (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104778254A (en) * 2015-04-20 2015-07-15 北京蓝色光标品牌管理顾问股份有限公司 Distributing type system for non-parameter topic automatic identifying and identifying method
CN105278956A (en) * 2015-09-30 2016-01-27 北京奇虎科技有限公司 Service processing module generation method and device
CN110311867A (en) * 2019-07-02 2019-10-08 江苏满运软件科技有限公司 Application module management method, device, electronic equipment, storage medium
US10983815B1 (en) * 2019-10-31 2021-04-20 Jpmorgan Chase Bank, N.A. System and method for implementing a generic parser module
CN112905172A (en) * 2021-03-16 2021-06-04 深圳市欢太科技有限公司 Component management method and device of application development framework, storage medium and electronic equipment
CN113205507A (en) * 2021-05-18 2021-08-03 合肥工业大学 Visual question answering method, system and server
CN113706223A (en) * 2021-09-24 2021-11-26 泰康保险集团股份有限公司 Data processing method and device
CN114168111A (en) * 2021-12-07 2022-03-11 北京五八信息技术有限公司 Method, device, product and storage medium for realizing modular routing
CN114266245A (en) * 2020-09-16 2022-04-01 北京金山数字娱乐科技有限公司 Entity linking method and device
CN114826633A (en) * 2021-01-28 2022-07-29 奇安信科技集团股份有限公司 Mail threat detection method, system, device and computer readable storage medium
CN115080416A (en) * 2022-06-25 2022-09-20 平安银行股份有限公司 Test method based on service code and related equipment thereof
CN115270131A (en) * 2022-06-14 2022-11-01 中国科学院信息工程研究所 Java anti-serialization vulnerability detection method and system
CN115421706A (en) * 2022-08-31 2022-12-02 杭州海康威视数字技术股份有限公司 Method and device for arranging service scheme and storage medium
CN115794219A (en) * 2022-12-23 2023-03-14 赛尔网络有限公司 Data source dynamic control method and device, electronic equipment and medium

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9471345B2 (en) * 2013-09-25 2016-10-18 Sap Se Runtime generation and injection of java annotations
US11789726B2 (en) * 2020-02-24 2023-10-17 Snowflake Inc. Semantic functional wrappers of services

Patent Citations (14)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN104778254A (en) * 2015-04-20 2015-07-15 北京蓝色光标品牌管理顾问股份有限公司 Distributing type system for non-parameter topic automatic identifying and identifying method
CN105278956A (en) * 2015-09-30 2016-01-27 北京奇虎科技有限公司 Service processing module generation method and device
CN110311867A (en) * 2019-07-02 2019-10-08 江苏满运软件科技有限公司 Application module management method, device, electronic equipment, storage medium
US10983815B1 (en) * 2019-10-31 2021-04-20 Jpmorgan Chase Bank, N.A. System and method for implementing a generic parser module
CN114266245A (en) * 2020-09-16 2022-04-01 北京金山数字娱乐科技有限公司 Entity linking method and device
CN114826633A (en) * 2021-01-28 2022-07-29 奇安信科技集团股份有限公司 Mail threat detection method, system, device and computer readable storage medium
CN112905172A (en) * 2021-03-16 2021-06-04 深圳市欢太科技有限公司 Component management method and device of application development framework, storage medium and electronic equipment
CN113205507A (en) * 2021-05-18 2021-08-03 合肥工业大学 Visual question answering method, system and server
CN113706223A (en) * 2021-09-24 2021-11-26 泰康保险集团股份有限公司 Data processing method and device
CN114168111A (en) * 2021-12-07 2022-03-11 北京五八信息技术有限公司 Method, device, product and storage medium for realizing modular routing
CN115270131A (en) * 2022-06-14 2022-11-01 中国科学院信息工程研究所 Java anti-serialization vulnerability detection method and system
CN115080416A (en) * 2022-06-25 2022-09-20 平安银行股份有限公司 Test method based on service code and related equipment thereof
CN115421706A (en) * 2022-08-31 2022-12-02 杭州海康威视数字技术股份有限公司 Method and device for arranging service scheme and storage medium
CN115794219A (en) * 2022-12-23 2023-03-14 赛尔网络有限公司 Data source dynamic control method and device, electronic equipment and medium

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
基于注解方式的Spring面向切面编程研究;丁振凡;;计算机时代(第07期);全文 *

Also Published As

Publication number Publication date
CN116360752A (en) 2023-06-30

Similar Documents

Publication Publication Date Title
CN108769109B (en) Unified processing method and system for data of Internet of things heterogeneous equipment
CN107391366B (en) Test case generation method, test case execution method and test case execution device
CN112035090B (en) Intelligent contract intelligent management system and method based on containerization technology
CN112162915A (en) Test data generation method, device, equipment and storage medium
CN108804100B (en) Method and device for creating interface element, storage medium and mobile terminal
CN111651169B (en) Block chain intelligent contract operation method and system based on web container
CN111694640B (en) Data processing method, device, electronic equipment and storage medium
US7712073B1 (en) Software development artifact creation tool
CN102402455A (en) Method and device for calling dynamic link library (DLL)
CN112230927A (en) File redirection method, code loading control method and device
CN114710549A (en) Dynamic management method, system and service node of network card in container platform
CN116360752B (en) Function programming method oriented to java, intelligent terminal and storage medium
CN113111109A (en) Interface warehousing analysis access method of data source
CN115202663A (en) Data processing method, device and storage medium
CN109857374B (en) Development method and device of mobile application
CN111488144A (en) Data processing method and equipment
CN108595160B (en) Method and storage medium for calling native object by JS
CN113468446B (en) Method, system and equipment for supporting identification of third party two-dimensional code data
CN114610413A (en) Method, device, equipment and storage medium for executing synchronous and asynchronous tasks based on Java
CN115237457A (en) AI application operation method and related product
CN113111111A (en) Multi-data source database access method
CN114253441A (en) Target function starting method and device, storage medium and electronic device
CN114064176A (en) View interaction method and device, electronic equipment and computer readable medium
CN113111108A (en) File data source warehousing analysis access method
CN112506943A (en) Heterogeneous data service providing 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