CN108304164B - Business logic development method and development system - Google Patents

Business logic development method and development system Download PDF

Info

Publication number
CN108304164B
CN108304164B CN201710817887.7A CN201710817887A CN108304164B CN 108304164 B CN108304164 B CN 108304164B CN 201710817887 A CN201710817887 A CN 201710817887A CN 108304164 B CN108304164 B CN 108304164B
Authority
CN
China
Prior art keywords
decision tree
business
logic
jvm
service
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
CN201710817887.7A
Other languages
Chinese (zh)
Other versions
CN108304164A (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.)
Mashang Consumer Finance Co Ltd
Original Assignee
Mashang Consumer Finance 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 Mashang Consumer Finance Co Ltd filed Critical Mashang Consumer Finance Co Ltd
Priority to CN201710817887.7A priority Critical patent/CN108304164B/en
Publication of CN108304164A publication Critical patent/CN108304164A/en
Application granted granted Critical
Publication of CN108304164B publication Critical patent/CN108304164B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/20Software design
    • G06F8/24Object-oriented
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/34Graphical or visual programming
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/40Transformation of program code
    • G06F8/41Compilation

Landscapes

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

Abstract

The application discloses a method for developing business logic, which comprises the following steps: the terminal expresses the received service logic statement through the logic of the decision tree to obtain a service decision tree; compiling the service decision tree through JVM to obtain a JVM object of the service decision tree; and loading the JVM object of the business decision tree into a business system. The service logic is expressed by using the decision tree, so that the landing process of the service logic is simpler and more efficient, the decision tree containing the service logic is compiled by the JVM to obtain a JVM object, the JVM object can be directly loaded into a service system in a common object adding mode, the integral system of the program is not required to be offline, the development speed of the service logic is accelerated, and the integral system is more flexible. The application also discloses a development system of the business logic, which has the beneficial effects.

Description

Business logic development method and development system
Technical Field
The present application relates to the field of computer technologies, and in particular, to a method and a system for developing business logic.
Background
With the development of information financial business, the financial system faces the business requirements with variable loads and needs to be met, but the technology is continuously changed, the robustness and the sustainability of the system are kept, and the separation of business logic and technical logic is needed in the development and the update of the system, so that a faster and more stable development mode is achieved. The realization of the system service can be divided into service logic and technical logic due to the complexity of the service bare computer and the high reusability of the technical logic, thereby realizing the high multiplexing of the technology. Meanwhile, when the system business logic changes, the technical logic cannot be influenced, and the robustness and the sustainability of the system are improved.
In general service logic development, new requirements need to be informed to a project manager, evaluation and design are carried out according to the requirements, the new functions of the development need to be tested and distributed to developers to complete the development, and meanwhile, the service personnel are delivered after the test is completed, and the development of the service logic is completed.
However, when the service update and the online are faced with a small parameter change, the process of online a new service system needs to be performed, the associated system needs to be offline and then online, and the update and the parameter change of the service system are completed, which may cause an excessive change amount, especially, the update time to be lengthened.
Therefore, how to bring the development of business logic online more flexibly and efficiently is a key issue that those skilled in the art are concerned about.
Disclosure of Invention
The application aims to provide a business logic development method and a business logic development system, the business logic is expressed by using a decision tree, the landing process of the business logic is simpler, more convenient and more efficient, the decision tree containing the business logic is compiled by a JVM (Java virtual machine) to obtain a JVM object, the JVM object can be directly loaded into the business system in a common object adding mode, the whole system of a program does not need to be offline and online, the business logic development speed is increased, and the whole system is more flexible.
In order to solve the above technical problem, the present application provides a method for developing business logic, including:
the terminal expresses the received service logic statement through the logic of the decision tree to obtain a service decision tree;
compiling the service decision tree through JVM to obtain a JVM object of the service decision tree;
and loading the JVM object of the business decision tree into a business system.
Optionally, the terminal expresses the received service logic statement through logic of a decision tree to obtain a service decision tree, where the method includes:
the terminal receives the service logic statement;
and matching the business logic statement through variables, data types and functions of a decision tree to obtain the business decision tree.
Optionally, the compiling the service decision tree through a JVM to obtain a service decision tree JVM object includes:
loading the business decision tree into a decision tree engine;
splitting the service decision tree by using a lexical analyzer of the decision tree engine to obtain a character string set;
performing combined association processing on the character string set to obtain a syntax tree;
the decision tree engine translates the syntax tree into a business decision tree JVM object.
Optionally, the loading the service decision tree JVM object into a service system includes:
compiling the business decision tree JVM object into a JVM static file;
and analyzing the JVM static file to obtain an executable JVM static file, and loading the executable JVM static file into the service system.
The present application further provides a system for developing business logic, including:
the decision tree logic expression module is used for expressing the received business logic statement through the logic of the decision tree to obtain a business decision tree;
the decision tree logic compiling module is used for compiling the service decision tree through JVM to obtain a service decision tree JVM object;
and the decision tree loading module is used for loading the business decision tree JVM object into a business system.
Optionally, the decision tree logic expression module includes:
a logic combination receiving unit, wherein the terminal receives the service logic statement;
and the logic matching unit is used for matching the business logic statement through variables, data types and functions of the decision tree to obtain the business decision tree.
Optionally, the decision tree logic compiling module includes:
the decision tree loading unit loads the service decision tree into a decision tree engine;
the splitting processing unit is used for splitting the service decision tree by utilizing a lexical analyzer of the decision tree engine to obtain a character string set;
the association processing unit is used for carrying out combined association processing on the character string set to obtain a syntax tree;
and the decision tree engine translates the syntax tree into a business decision tree (JVM) object.
Optionally, the decision tree loading module includes:
the static file compiling unit compiles the business decision tree JVM object into a JVM static file;
and the loading processing unit is used for analyzing the JVM static file to obtain an executable JVM static file and loading the executable JVM static file into the service system.
The business logic development method provided by the application comprises the following steps: the terminal expresses the received service logic statement through the logic of the decision tree to obtain a service decision tree; compiling the service decision tree through JVM to obtain a JVM object of the service decision tree; and loading the JVM object of the business decision tree into a business system.
The service logic is expressed by using the decision tree, so that the landing process of the service logic is simpler and more efficient, the decision tree containing the service logic is compiled by the JVM to obtain a JVM object, the JVM object can be directly loaded into a service system in a common object adding mode, the integral system of the program is not required to be offline, the development speed of the service logic is accelerated, and the integral system is more flexible.
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 flowchart of a method for developing business logic according to an embodiment of the present application;
FIG. 2 is a flow chart of a logic expression of a method for developing business logic according to an embodiment of the present application;
fig. 3 is a flowchart of decision tree compiling of a method for developing business logic according to an embodiment of the present application;
fig. 4 is a flowchart of a loading decision tree of a method for developing business logic according to an embodiment of the present application;
fig. 5 is a schematic structural diagram of a development system of business logic according to an embodiment of the present application.
Detailed Description
The core of the application is to provide a business logic development method and a business logic development system, the business logic is expressed by using a decision tree, the landing process of the business logic is simpler, more convenient and more efficient, the decision tree containing the business logic is compiled by a JVM (Java virtual machine) to obtain a JVM object, the JVM object can be directly loaded into the business system in a common object adding mode, the whole system of a program does not need to be offline and online, the business logic development speed is accelerated, and the whole system is more flexible.
In order to make the objects, technical solutions and advantages of the embodiments of the present application clearer, 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 some embodiments of the present application, but not all 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.
Referring to fig. 1, fig. 1 is a flowchart of a method for developing business logic according to an embodiment of the present disclosure.
The embodiment provides a method for developing business logic, which may include:
s101, a terminal expresses a received service logic statement through the logic of a decision tree to obtain a service decision tree;
the step aims at expressing the business logic statement to be added through the logic of the decision tree to obtain the business decision tree, wherein the business decision tree can be a special code of the expression logic formed by combining the languages of the decision tree. The process is to convert the logic process understood by the business personnel into the business decision tree code which can be recognized by the computer.
The business logic is a model or a mode for processing the business, is obtained by abstracting the processing flow of the business by business personnel, and is a simple logic combination of an object for processing the business and the flow for processing the business. This combination may be a simple mathematical calculation, a logical comparison, and a conditional logical combination. And then expressing the logic combination through the basic logic of the decision tree, wherein the expression process is to express the logic combination corresponding to the business logic by using the logic of the decision tree.
The decision tree may be a tree structure in which each internal node represents a test on an attribute, each branch represents a test output, and each leaf node represents a category. The method accords with logic understanding of business personnel, has simple grammar and convenient understanding, and can lead the business personnel to develop business logic quickly and conveniently.
Therefore, the business logic is expressed through the decision tree, and the primary stage of the development process of the business logic can be more efficient and faster.
S102, compiling the service decision tree through JVM to obtain a JVM object of the service decision tree;
on the basis of step S101, this step is intended to compile the logic of decision tree expression into a JVM object. Since the decision tree expresses the logic combination which is consistent with the understanding and observation of the business personnel, when the business logic is loaded into a computer system, the logic of the decision tree needs to be converted into a programming language of the computer, so that the computer can compile and execute the logic of the decision tree.
In this embodiment, the JVM language is selected as the programming language, and due to the characteristics of the JVM, the object of the JVM can be loaded into the system when the system runs, and the update operation of the business logic is completed without taking the system offline and online. Moreover, the general expressive languages are dynamic programming languages, and the performance is poor in the operation of language programs. In the technical scheme, the business logic can be expressed as JVM language through the representation of the decision tree, and the JVM is based on Java language and can achieve the performance of static language during the operation.
S103, loading the JVM object of the business decision tree into a business system.
On the basis of step S102, this step is intended to load the resulting JVM object into the business system. The JVM object is a piece of programming code, and the computer can process the JVM object through a general code processing flow and load the JVM object into a business system.
After the business strategy is loaded into a business system, when a decision tree needs to be executed, an engine supporting the operation of the decision tree loads client data from a fragmentation database, converts input data into a decision tree data class, and calls a method of an entry of a JVM class to finish the execution of the business strategy.
Optionally, after the execution is completed, the engine of the decision tree performs difference comparison to obtain a field set which needs to be updated to the fragmentation database, and the field set is applied to the fragmentation database.
Generally, the development of business logic also includes debugging process and logging, and the above functions can be completed by tools such as debugging software.
In this embodiment, when a decision tree is compiled to generate a JVM, a break burying point is added to each line of codes in a source decision tree corresponding to a JVM object, log information such as state information and the number of lines of execution of the decision tree can be recorded through a terminal point purchase, and a system can support break point breaking through the break burying point. When the decision tree is debugged, a decision tree debugging tool with a graphical interface is established, test input data can be added through the debugging tool, and the decision tree is tested and executed. The debugging tool can display the execution data of the decision tree, and the state information of the execution of the decision tree can be conveniently observed.
Meanwhile, in the decision tree debugging tool, a breakpoint can be added to the decision tree code, and the breakpoint indicates that the interrupt operation is performed in the test decision tree, so that the current variable state can be observed.
Generally, the development process of the system service also includes version management and online update management of the system, and the version and update operations can be managed through integrated software.
In this embodiment, because the decision tree code can be modularized, each business processing decision tree is composed of a decision tree and a plurality of decision tree subprograms, and the whole set of business processing decision trees constitutes an example. The decision tree version library stores a plurality of decision tree instances, and each version of each business logic corresponds to one instance. When the decision tree is used for searching and updating the interface, the decision tree code can be modified, and when the modification is completed, the system generates a new decision tree instance version and records modification personnel for the new decision tree instance version. After a new decision tree instance is generated, whether the new decision tree instance is applied to the current decision tree instance version can be determined in a decision tree checking and updating interface, and after the new decision tree instance is applied, the system sends an asynchronous message notification to enable the decision tree cache of each machine in the system cluster to be expired and reload or compile the decision tree.
In summary, the service logic to be added is expressed by the decision tree, the JVM compiles the decision tree to obtain the object of the JVM, and when the decision tree is loaded into the system, the object can be directly added into the system, and the service logic is directly executed, so that the development speed of the service logic can be effectively increased, and the development process is more flexible.
Referring to fig. 2, fig. 2 is a flowchart illustrating a logic expression of a method for developing business logic according to an embodiment of the present disclosure.
Based on the previous embodiment, the present embodiment mainly aims at explaining how to perform logic expression on the decision tree in the previous real time, other parts are substantially the same as the previous embodiment, and the same parts may refer to the previous embodiment, which is not described herein again.
The embodiment may include:
s201, a terminal receives a business logic statement;
this step is intended to be the reception of a business logic statement by the terminal. The business logic statement is a business logic processing process summarized and considered by business personnel, and the business personnel can input the business logic into the terminal through a visual interface.
It should be noted that, the service person may also directly input the logic of the service processing into the terminal through the decision tree. Because the decision tree is easy to express and convenient, and business personnel can input the logic into the terminal without learning too many logic relations of the decision tree.
S202, matching the business logic statement through variables, data types and functions of the decision tree to obtain the business decision tree.
On the basis of step S201, this step aims to match the received business logic statements against the basic components of the decision tree to obtain the decision tree.
The variables of the decision tree are divided into service variables and temporary variables, the service variables are mostly user attributes and need to be stored continuously, and the temporary variables are variables such as loop body variables and accumulation counters, and need to be initialized every time execution is performed. The data types are primarily data types such as strings, numbers, boolean, time of day, and objects and arrays. Functions are also basic functions including, for example, conditional functions, function calls, grouping functions, and traversing functions.
Referring to fig. 3, fig. 3 is a flowchart of decision tree compiling of a business logic development method according to an embodiment of the present disclosure.
Based on the previous embodiment, the present embodiment mainly aims at an explanation of how to perform decision tree compiling on a decision tree in the previous real time, other parts are substantially the same as the previous embodiment, and the same parts may refer to the previous embodiment, which is not described herein again.
The embodiment may include:
s301, loading the service decision tree into a decision tree engine;
the step aims to load the obtained business decision tree into a decision tree engine, wherein the decision tree engine is a functional module capable of compiling the decision tree.
In this step, system attributes are loaded, which mainly include client data fields, interface input and output fields, system product configuration fields, etc., and are generated as internal class forms of the JVM object.
S302, a lexical analyzer of a decision tree engine is used for splitting a service decision tree to obtain a character string set;
on the basis of step S302, this step is intended to remove repeated, annotated, and non-valuable content parts of the decision tree by the lexical parser, and to split the decision tree into sets of variables and expression strings.
S303, carrying out combined association processing on the character string set to obtain a syntax tree;
on the basis of step S302, this step is intended to combine and associate sets of character strings to form a syntax tree.
Certainly, there are some other processing procedures in the process of performing the combining and associating operations, and specifically, what syntax tree needs to be obtained and how to cooperate with the subsequent JVM class generation, different processing procedures are selected, which is not described herein again.
S304, the decision tree engine translates the syntax tree into a business decision tree JVM object.
On the basis of step S304, this step is intended to translate the syntax tree into the JVM object of the decision tree.
Before the decision tree engine generates the JVM object, it is necessary to generate a class base control method, an internal data object class, and the like, and the internal data object is generated based on both the system attribute and a temporary variable obtained by scanning the syntax tree definition variable region.
Referring to fig. 4, fig. 4 is a flowchart of a loading decision tree of a business logic development method according to an embodiment of the present application.
Based on the previous embodiment, this embodiment mainly aims at an explanation of how to load the decision tree in the previous real-time, other parts are substantially the same as the previous embodiment, and the same parts may refer to the previous embodiment, which is not described herein again.
The embodiment may include:
s401, compiling the business decision tree JVM object into a JVM static file;
s402, analyzing the JVM static file to obtain an executable JVM static file, and loading the executable JVM static file into a service system.
The present embodiment is directed to loading JVM objects into a business system by way of static files.
The embodiment of the application provides a method for developing business logic, which expresses the business logic by using a decision tree, so that the landing process of the business logic is simpler, more convenient and more efficient, the decision tree containing the business logic is compiled by a JVM (Java virtual machine) to obtain a JVM object, the JVM object can be directly loaded into a business system in a common object adding mode, the whole system of a program does not need to be offline and online, the development speed of the business logic is accelerated, and the whole system is more flexible.
In the following, a development system of business logic provided by an embodiment of the present application is introduced, and a development system of business logic described below and a development method of business logic described above may be referred to correspondingly.
Referring to fig. 5, fig. 5 is a schematic structural diagram of a development system of business logic according to an embodiment of the present disclosure.
The embodiment may include:
the decision tree logic expression module 100 is configured to express the received service logic statement through the logic of the decision tree to obtain a service decision tree;
the decision tree logic compiling module 200 is used for compiling the service decision tree through the JVM to obtain a service decision tree JVM object;
the decision tree loading module 300 loads the service decision tree JVM object into the service system.
An optional decision tree logic expression module 100, comprising:
a logic combination receiving unit, wherein the terminal receives the service logic statement;
and the logic matching unit is used for matching the business logic statements through variables, data types and functions of the decision tree to obtain the business decision tree.
An optional decision tree logic compilation module 200 comprising:
the decision tree loading unit loads the service decision tree into the decision tree engine;
the splitting processing unit is used for splitting the service decision tree by utilizing a lexical analyzer of the decision tree engine to obtain a character string set;
the association processing unit is used for carrying out combined association processing on the character string set to obtain a syntax tree;
and the decision tree engine translates the syntax tree into a business decision tree JVM object.
An optional decision tree loading module 300, comprising:
the static file compiling unit compiles the JVM object of the business decision tree into a JVM static file;
and the loading processing unit is used for analyzing the JVM static file to obtain an executable JVM static file and loading the executable JVM static file into the service system.
The embodiments are described in a progressive manner in the specification, each embodiment focuses on differences from other embodiments, and the same and 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.
Those of skill would further appreciate that the various illustrative elements and algorithm steps described in connection with the embodiments disclosed herein may be implemented as electronic hardware, computer software, or combinations of both, and that the various illustrative components and steps have been described above generally in terms of their functionality in order to clearly illustrate this interchangeability of hardware and software. Whether such functionality is implemented as hardware or software depends upon the particular application and design constraints imposed on the implementation. Skilled artisans may implement the described functionality in varying ways for each particular application, but such implementation decisions should not be interpreted as causing a departure from the scope of the present application.
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 development method and the development system for the business logic provided by the application are described in detail above. The principles and embodiments of the present application are explained herein using specific examples, which are provided only to help understand the method and the core idea of the present application. It should be noted that, for those skilled in the art, it is possible to make several improvements and modifications to the present application without departing from the principle of the present application, and such improvements and modifications also fall within the scope of the claims of the present application.

Claims (6)

1. A method for developing business logic, comprising:
the terminal expresses the received service logic statement through the logic of the decision tree to obtain a service decision tree;
loading the business decision tree into a decision tree engine;
splitting the service decision tree by using a lexical analyzer of the decision tree engine to obtain a character string set;
performing combined association processing on the character string set to obtain a syntax tree;
the decision tree engine translates the syntax tree into a business decision tree (JVM) object;
and loading the JVM object of the business decision tree into a business system to finish the execution of the business strategy.
2. The development method according to claim 1, wherein the terminal expresses the received service logic statement through logic of a decision tree to obtain a service decision tree, and the method comprises:
the terminal receives the service logic statement;
and matching the business logic statement through variables, data types and functions of a decision tree to obtain the business decision tree.
3. The development method according to claim 2, wherein said loading said business decision tree JVM object into a business system comprises:
compiling the business decision tree JVM object into a JVM static file;
and analyzing the JVM static file to obtain an executable JVM static file, and loading the executable JVM static file into the service system.
4. A system for developing business logic, comprising:
the decision tree logic expression module is used for expressing the received business logic statement through the logic of the decision tree to obtain a business decision tree;
the decision tree logic compiling module loads the service decision tree into a decision tree engine; splitting the service decision tree by using a lexical analyzer of the decision tree engine to obtain a character string set; performing combined association processing on the character string set to obtain a syntax tree; the decision tree engine translates the syntax tree into a business decision tree (JVM) object;
and the decision tree loading module is used for loading the business decision tree JVM object into a business system so as to complete the execution of the business strategy.
5. The development system of claim 4, wherein the decision tree logic expression module comprises:
the logic combination receiving unit is used for receiving the service logic statement by the terminal;
and the logic matching unit is used for matching the business logic statement through variables, data types and functions of the decision tree to obtain the business decision tree.
6. The development system of claim 5, wherein the decision tree loading module comprises:
the static file compiling unit compiles the business decision tree JVM object into a JVM static file;
and the loading processing unit is used for analyzing the JVM static file to obtain an executable JVM static file and loading the executable JVM static file into the service system.
CN201710817887.7A 2017-09-12 2017-09-12 Business logic development method and development system Active CN108304164B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710817887.7A CN108304164B (en) 2017-09-12 2017-09-12 Business logic development method and development system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710817887.7A CN108304164B (en) 2017-09-12 2017-09-12 Business logic development method and development system

Publications (2)

Publication Number Publication Date
CN108304164A CN108304164A (en) 2018-07-20
CN108304164B true CN108304164B (en) 2021-12-03

Family

ID=62869623

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710817887.7A Active CN108304164B (en) 2017-09-12 2017-09-12 Business logic development method and development system

Country Status (1)

Country Link
CN (1) CN108304164B (en)

Families Citing this family (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110109661A (en) * 2019-05-09 2019-08-09 深圳美美网络科技有限公司 A kind of development approach and development system of service logic
CN111158730B (en) * 2019-12-31 2023-09-01 北京奇艺世纪科技有限公司 System updating method, device, electronic equipment and readable storage medium
CN112350856B (en) * 2020-10-27 2023-04-07 中国联合网络通信集团有限公司 Distributed service sign-off method and equipment
CN114840325B (en) * 2022-05-27 2024-09-20 中国平安财产保险股份有限公司 Service data loading method and device, electronic equipment and storage medium

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1659589A (en) * 2002-04-19 2005-08-24 电脑联合想象公司 System and method for providing inferencing services
CN102054002A (en) * 2009-10-28 2011-05-11 中国移动通信集团公司 Method and device for generating decision tree in data mining system
CN102457390A (en) * 2010-10-15 2012-05-16 中兴通讯股份有限公司 Fault location method and system based on quality of experience (QoE)
CN103177129A (en) * 2013-04-19 2013-06-26 上海新数网络科技有限公司 Internet real-time information recommendation and prediction system
CN105354588A (en) * 2015-09-28 2016-02-24 北京邮电大学 Decision tree construction method
CN105657201A (en) * 2016-01-26 2016-06-08 北京京东尚科信息技术有限公司 Method and system for processing call based on decision tree model
CN107122220A (en) * 2017-04-12 2017-09-01 上海前隆金融信息服务有限公司 Construction method/system, business management method/system and the equipment of regulation engine

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6820067B1 (en) * 2000-06-16 2004-11-16 General Electric Company System and method for producing web-based process advisor applications
CN100571422C (en) * 2007-04-11 2009-12-16 华为技术有限公司 Value-added service collocation method and increment service system based on assembly
CN102385593B (en) * 2010-09-03 2013-05-08 金蝶软件(中国)有限公司 Method and device as well as operation system for operating utility tree
CN102231162A (en) * 2011-07-01 2011-11-02 福建富士通信息软件有限公司 Dynamic rule engine configuration method based on service processing
CN102523241B (en) * 2012-01-09 2014-11-19 北京邮电大学 Method and device for classifying network traffic on line based on decision tree high-speed parallel processing
US20140173556A1 (en) * 2012-12-17 2014-06-19 Qualcomm Incorporated Systems and methods for selection of specialized functions in dynamically-typed languages
CN103198099A (en) * 2013-03-12 2013-07-10 南京邮电大学 Cloud-based data mining application method facing telecommunication service

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1659589A (en) * 2002-04-19 2005-08-24 电脑联合想象公司 System and method for providing inferencing services
CN102054002A (en) * 2009-10-28 2011-05-11 中国移动通信集团公司 Method and device for generating decision tree in data mining system
CN102457390A (en) * 2010-10-15 2012-05-16 中兴通讯股份有限公司 Fault location method and system based on quality of experience (QoE)
CN103177129A (en) * 2013-04-19 2013-06-26 上海新数网络科技有限公司 Internet real-time information recommendation and prediction system
CN105354588A (en) * 2015-09-28 2016-02-24 北京邮电大学 Decision tree construction method
CN105657201A (en) * 2016-01-26 2016-06-08 北京京东尚科信息技术有限公司 Method and system for processing call based on decision tree model
CN107122220A (en) * 2017-04-12 2017-09-01 上海前隆金融信息服务有限公司 Construction method/system, business management method/system and the equipment of regulation engine

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
Decision tree algorithms for image data type identification;Khoa Nguyen;《 Logic Journal of the IGPL》;20170228;1-3 *
基于Hadoop的数据挖掘算法并行化研究;赵伟;《中国优秀硕士学位论文全文数据库 (信息科技辑)》;20151225;I138-344 *

Also Published As

Publication number Publication date
CN108304164A (en) 2018-07-20

Similar Documents

Publication Publication Date Title
US7478366B2 (en) Debugger and method for debugging computer programs across multiple programming languages
CN106156186B (en) Data model management device, server and data processing method
JP4183399B2 (en) Multiple language compilation method and system
CN108304164B (en) Business logic development method and development system
US10540262B2 (en) Using edit and continue to dynamically set and unset optimizations in source code while debugging
US8850414B2 (en) Direct access of language metadata
CN112394942B (en) Distributed software development compiling method and software development platform based on cloud computing
US8423971B2 (en) Generating an application software library
US9965257B2 (en) Automatic configuration of project system from project capabilities
US9311077B2 (en) Identification of code changes using language syntax and changeset data
CN110673837B (en) Code repairing method and device, electronic equipment and computer readable storage medium
CN110058861B (en) Source code processing method and device, storage medium and electronic equipment
Bouraqadi et al. Test-driven development for generated portable Javascript apps
CN113297081B (en) Execution method and device of continuous integrated pipeline
CN114115884B (en) Method and related device for managing programming service
CN111435312A (en) Application program management method and device and electronic equipment
CN113448852A (en) Test case obtaining method and device, electronic equipment and storage medium
US11442845B2 (en) Systems and methods for automatic test generation
US11537372B2 (en) Generating compilable machine code programs from dynamic language code
US11429358B2 (en) Representing asynchronous state machine in intermediate code
CN115344268A (en) Multi-platform embedded development environment compiling method and device
Chen et al. Tracking down dynamic feature code changes against Python software evolution
US10474476B1 (en) Techniques for logging information
McNamara Rust in Action
Blunk et al. Efficient Development of Domain-Specific Simulation Modelling Languages and Tools

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