CN111190587A - Method and system for automatically generating engineering front-end code based on JDBC - Google Patents

Method and system for automatically generating engineering front-end code based on JDBC Download PDF

Info

Publication number
CN111190587A
CN111190587A CN201911369414.0A CN201911369414A CN111190587A CN 111190587 A CN111190587 A CN 111190587A CN 201911369414 A CN201911369414 A CN 201911369414A CN 111190587 A CN111190587 A CN 111190587A
Authority
CN
China
Prior art keywords
jdbc
database
page
freemarker
table structure
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.)
Pending
Application number
CN201911369414.0A
Other languages
Chinese (zh)
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.)
Dawning Information Industry Beijing Co Ltd
Original Assignee
Dawning Information Industry Beijing 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 Dawning Information Industry Beijing Co Ltd filed Critical Dawning Information Industry Beijing Co Ltd
Priority to CN201911369414.0A priority Critical patent/CN111190587A/en
Publication of CN111190587A publication Critical patent/CN111190587A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • 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)
  • Stored Programmes (AREA)

Abstract

The invention discloses a method for automatically generating an engineering front-end code based on JDBC, which is characterized by comprising the following steps: acquiring a database table structure by using JDBC; performing data conversion on the acquired data table structure according to a preset rule to generate a Java object; constructing a Freemarker template; correspondingly inputting each parameter in the Java object into the Freemarker template to generate a front end code; the method of the invention reads the database, and generates the target code for the acquired field through the Freemarker template, thereby reducing the repeated work of front-end development; when a new table is added, the front-end code can be automatically generated by directly operating the template program, so that the front-end developer can conveniently add the page; the template generation mode can lead the basic functions of the front end to be unified, is convenient for style management, is beneficial to directly generating basic test files and reduces the test pressure. The invention also provides a system for realizing the method.

Description

Method and system for automatically generating engineering front-end code based on JDBC
Technical Field
The invention relates to the technical field of front-end development, in particular to a method and a system for automatically generating an engineering front-end code based on JDBC.
Background
At present, more and more projects start to implement a front-end and back-end separation mode, interactive data is called and inquired by using an interface, a MyBatis reverse engineering is generated at the back end, however, the front end still performs repeated page writing according to the interface, and all basic addition, deletion and modification pages need to be rewritten when tables and new functions are added every time, so that human resources are greatly wasted.
In the actual project development process through the traditional technology, after the database is designed, a large number of developers are needed to implement the front-end page, a large number of repetitive pages and functions exist, perhaps, only different data are stored, and corresponding table structures are different, but the developers must write the front-end page for each table structure and implement the front-end page in a background mode, and the bug page caused by communication errors is easy to occur. In addition, in the large-scale development process, a uniform template cannot be formed, and difficulties are caused in pattern uniformity and later maintenance. However, the front end is not designed with a perfect frame before, and cannot generate a template through a page of design estimation; that is, the technology of generating backend codes such as MyBatis reverse engineering, although the backend can unify the basic service logic by using spring, it cannot adapt to different front-end frameworks.
In view of the above, the present invention is particularly proposed.
Disclosure of Invention
Aiming at the defects in the prior art, the invention provides a method and a system for automatically generating an engineering front-end code based on JDBC, which are beneficial to improving the front-end development efficiency.
In order to achieve the purpose, the technical scheme of the invention is as follows:
a JDBC-based method for automatically generating engineered front-end codes comprises the following steps:
acquiring a database table structure by using JDBC;
performing data conversion on the acquired data table structure according to a preset rule to generate a Java object;
constructing a Freemarker template;
and correspondingly inputting each parameter in the Java object into the Freemarker template to generate a front-end code.
Further, in the method for automatically generating an engineering front-end code based on JDBC, the obtaining of the database table structure by JDBC includes
Configuring JDBC;
and reading a database table structure through a Java program based on the configured JDBC.
Further, in the method for automatically generating an engineering front-end code based on JDBC, the data conversion is performed on the obtained data table structure according to a preset rule, and the generated Java object includes a Java object
Converting the field type in the database into a front-end field type;
and extracting field lengths and/or non-empty fields in the database, and putting field attributes of the database into Java objects corresponding to the fields.
Further, in the method for automatically generating an engineering front-end code based on JDBC, the constructing the freemaker template includes:
extracting a public page;
and configuring a public style and background processing logic for the public page, and processing and packaging the public page by a component method.
Further, in the method for automatically generating an engineering front-end code based on JDBC, configuring a common style and a background processing logic for the common page, and processing and packaging the common style and the background processing logic by a component method includes:
setting service, and configuring an http request interacting with a background;
configuring page routing information to enable a page to carry out normal jumping;
and after the configuration is completed, the basic page and the logic are added, deleted, changed and checked, and the data part is set to be in a Freemarker field format.
On the other hand, the invention also provides a system for automatically generating engineering front-end codes based on JDBC, which comprises
The JDBC module is used for acquiring a database table structure;
the data conversion module is used for performing data conversion on the acquired database table structure according to a preset rule to generate a Java object;
the Freemarker configuration module is used for constructing a Freemarker template;
and the code generation module is used for correspondingly inputting each parameter in the Java object into the Freemarker template to generate a front-end code.
Furthermore, in the system for automatically generating the engineering front-end code based on the JDBC, the JDBC module performs corresponding configuration according to databases in different environments based on the JDBC as an interface in the process of acquiring the database table structure, and then reads the table structure of the database through the Java program.
Further, in the system for automatically generating an engineering front-end code based on JDBC, the data conversion module formats the database table structure, including
Converting the field type in the database into a front-end field type;
and extracting field lengths and/or non-empty fields in the database, and putting field attributes of the database into Java objects corresponding to the fields.
Further, in the system for automatically generating an engineering front-end code based on JDBC, the Freemarker configuration module constructs a Freemarker template, which includes
Extracting a public page;
and configuring a public style and background processing logic for the public page, and processing and packaging the public page by a component method.
Further, in the system for automatically generating an engineering front-end code based on JDBC, configuring a common style and a background processing logic for the common page, and processing and packaging the common style and the background processing logic by a component method includes:
setting service, and configuring an http request interacting with a background;
configuring page routing information to enable a page to carry out normal jumping;
and after the configuration is completed, the basic page and the logic are added, deleted, changed and checked, and the data part is set to be in a Freemarker field format.
Compared with the prior art, the invention has the beneficial effects that:
the method of the invention reads the database, and generates the target code for the acquired field through the Freemarker template, thereby reducing the repeated work of front-end development; when a new table is added, the front-end code can be automatically generated by directly operating the template program, so that the front-end developer can conveniently add the page; the template generation mode can lead the basic functions of the front end to be unified, is convenient for style management, is beneficial to directly generating basic test files and reduces the test pressure. The invention also provides a system for realizing the method.
Drawings
In order to more clearly illustrate the detailed description of the invention or the technical solutions in the prior art, the drawings that are needed in the detailed description of the invention or the prior art will be briefly described below. Throughout the drawings, like elements or portions are generally identified by like reference numerals. In the drawings, elements or portions are not necessarily drawn to scale.
FIG. 1 is a flowchart of one embodiment of a JDBC-based method for automatically generating an engineered front-end code of the present invention;
FIG. 2 is a schematic diagram of the Freemarker template generating object codes in the method shown in FIG. 1;
FIG. 3 is a flowchart of a JDBC-based method for automatically generating engineering front-end codes according to the present invention.
Detailed Description
Embodiments of the present invention will be described in detail below with reference to the accompanying drawings. The following examples are only for illustrating the technical solutions of the present invention more clearly, and therefore are only examples, and the protection scope of the present invention is not limited thereby.
It is to be noted that, unless otherwise specified, technical or scientific terms used herein shall have the ordinary meaning as understood by those skilled in the art to which the invention pertains.
Example 1
As shown in fig. 1-2, a method for automatically generating an engineered front-end code based on JDBC includes obtaining a database table structure using JDBC;
performing data conversion on the acquired database table structure according to a preset rule to generate a Java object;
constructing a Freemarker template;
and correspondingly inputting each parameter in the Java object into the Freemarker template to generate a front-end code.
The method mainly uses JDBC (Java database connectivity, Java database connection for short) interfaces provided by various database manufacturers, reads database configuration information by using Java, and generates front-end engineering codes according to a designed Freemarker template, thereby removing the repetitive labor of developers and saving the development cost; and the page is generated by using the template, so that the project codes can be unified, and the later maintenance and management are facilitated.
Specifically, S1. utilize JDBC to obtain database table structure, include
S11, configuring JDBC;
s12, reading a database table structure through a Java program based on the configured JDBC;
JDBC is an application program interface in Java language that specifies how client programs access databases, providing methods such as querying and updating data in databases; java is a widely used computer programming language, has the characteristics of cross-platform, object-oriented and generic programming, and is widely applied to enterprise-level Web application development and mobile application development; in this step, JDBC is used as a basis for reading database structure data, and JDBC provided by various manufacturers is used to perform corresponding configuration according to databases in different environments, and then a table structure of the database is read by a Java program.
In the reading database table structure, a table array needing to be read is configured, and Java codes are used for converting the needed table into a data object which can be read by Java.
S2, performing data conversion on the acquired database table structure according to preset rules to generate Java readable data objects
The database table structure obtained through JDBC is only the fields and data attributes of each table in the database, and in order to be used in a subsequent freemaker template engine, the data needs to be formatted correspondingly, so that the reference of different data is realized. Thus, the present step includes:
s21, converting the field type in the database into a front-end field type;
text fields in the database such as: CHARR, VHARCHAR, TINYLBLOB, TEXY, TINYTEXT, LONGTEXT, etc. need to be converted into String type of the front end; digital fields in the database, such as TINYINT, INT, BIGINT, FLOAT, DOUBLE, etc., need to be converted to Number types, and DATE fields in the database, such as DATE, TIME, YEAR, DATETIME, TIMETAMP, etc., need to be converted to DATE types. The type of conversion is adjusted appropriately for different databases.
S22, extracting field lengths and/or non-empty fields in the database, and putting field attributes of the database into Java objects corresponding to the fields;
after the conversion of the field types of the database is finished, the field lengths and non-empty fields are extracted, and the field attributes of the database are put into Java objects corresponding to the fields, so that the subsequent generation of front-end codes is facilitated, and the form verification during adding and modifying can be automatically generated.
S3, constructing a Freemarker template
FreeMarker is a template engine written in Java language that generates output text (HTML web pages, e-mails, configuration files, source code, etc.) based on templates and data to be changed;
in the embodiment provided by the method, the freemaker template is constructed by firstly configuring engineering codes of a front-end frame, such as front-end frame codes of Angular, React or Vue; the front-end frame code is fixed and defined as a template, and then the corresponding field (data) is acquired subsequently and embedded into the front-end frame code, so that the corresponding complete target code can be output. The front-end frame code can be used for better extracting the public code used by the user, so that the later maintenance is facilitated.
Specifically, comprise
S31, extracting a public page;
in website production, a plurality of parts of codes are the same, and the codes can be extracted to be made into a public component; therefore, in the process of constructing the Freemarker configuration template, firstly, a public front-end Component set needs to be extracted, components (Component, which is simple encapsulation of data and methods) for displaying a data page, adding a page, modifying a page and deleting a page are configured, and the Component methods (namely functions) are extracted and configured;
s32, configuring a public style and background processing logic;
namely, the style and logic of the public front end are configured, and the background sending requests, the sending format and the processing logic are processed and packaged by a component method, and the method comprises the following steps:
s321, setting service, and configuring an http request interacting with a background;
s322, configuring page routing information to enable a page to carry out normal jumping;
and S323, after the configuration is finished, the basic page and the logic are added, the data part is set to be in a Freemarker field $ { … } format, and the code is generated into a format capable of adding the data.
S4, correspondingly inputting each parameter in the Java object into the Freemarker template to generate a front-end code
In the step, html (front end code) is generated through a Freemarker template and a data result and output to a designated position in a programming environment (javase environment).
And for the Java readable object generated by the database table structure acquired by JDBC, putting each parameter in the object into a corresponding Freemarker template, and converting the structure of the database into a front-end engineering code.
Html and js codes can be generated by using different templates; the method provided by the invention aims to provide a template framework, and different Freemarker templates (different extracted public front-end components) can be adopted according to requirements to generate the target code.
Generating a static page code by a Freemarker template, wherein a self-defined template page needs to be used; template pages which accord with the code specification of the template page comprise an html page and a js page, and in the process of constructing the Freemarker template, field values (data parts) can be added according to the Freemarker template format by extracting public parts of the pages to generate a ftl format file; the method can also be realized by configuring a common html page and a js page, namely, a background can read the template page, analyze the tags in the template page and finish corresponding operation by nesting value expressions, tags or self-defined tags and the like in a Freemarker template.
The method of the invention reads the database, and generates the target code for the acquired field through the Freemarker template, thereby reducing the repeated work of front-end development; when a new table is added, the front-end code can be automatically generated by directly operating the template program, so that the front-end developer can conveniently add the page; the template generation mode can lead the basic functions of the front end to be unified, is convenient for style management, is beneficial to directly generating basic test files and reduces the test pressure.
Example 2
In another aspect, the present invention further provides a system for implementing the method, as shown in fig. 3, including:
the JDBC module is used for acquiring a database table structure;
the data conversion module is used for performing data conversion on the acquired database table structure according to a preset rule to generate a Java object;
the Freemarker configuration module is used for constructing a Freemarker template;
and the code generation module is used for correspondingly inputting each parameter in the Java object into the Freemarker template to generate a front-end code.
Specifically, in the process of acquiring the database table structure, the JDBC module performs corresponding configuration according to databases in different environments based on the JDBC interface, and then reads the table structure of the database through the Java program.
And the table structure data acquired by the JDBC module is transmitted to the data conversion module, and data conversion is carried out on the table structure of the database according to a preset rule to generate a Java object.
The database table structure obtained through JDBC is only the fields and data attributes of each table in the database, and in order to be used in a subsequent freemaker template engine, the data needs to be formatted correspondingly, so that the reference of different data is realized. Thus, the formatting process performed by the data conversion module includes:
1. converting the field type in the database into a front-end field type;
text fields in the database such as: CHARR, VHARCHAR, TINYLBLOB, TEXY, TINYTEXT, LONGTEXT, etc. need to be converted into String type of the front end; digital fields in the database, such as TINYINT, INT, BIGINT, FLOAT, DOUBLE, etc., need to be converted to Number types, and DATE fields in the database, such as DATE, TIME, YEAR, DATETIME, TIMETAMP, etc., need to be converted to DATE types. The type of conversion is adjusted appropriately for different databases.
2. Extracting field lengths and/or non-empty fields in the database, and putting field attributes of the database into Java objects corresponding to the fields;
after the conversion of the field types of the database is finished, the field lengths and non-empty fields are extracted, and the field attributes of the database are put into Java objects corresponding to the fields, so that the subsequent generation of front-end codes is facilitated, and the form verification during adding and modifying can be automatically generated.
The Freemarker configuration module is used for constructing a Freemarker template:
FreeMarker is a template engine written in Java language that generates output text (HTML web pages, e-mails, configuration files, source code, etc.) based on templates and data to be changed; the freemaker template constructed by the invention firstly needs to be configured with the engineering code of the front-end framework, such as the front-end framework code of Angular, React or Vue; the front-end frame code is fixed and defined as a template, and then the corresponding field (data) is acquired subsequently and embedded into the front-end frame code, so that the corresponding complete target code can be output. The front-end frame code can be used for better extracting the public code used by the user, so that the later maintenance is facilitated.
Specifically, comprise
1. Extracting a public page;
in website production, a plurality of parts of codes are the same, and the codes can be extracted to be made into a public component; therefore, in the process of constructing the freemaker configuration template, a common front-end Component set needs to be extracted first, components (Component, which is a simple package for data and methods) including a data page display, a page addition, a page modification and a page deletion are configured, and Component methods (i.e., functions) of the components are extracted and configured.
2. Configuring a public style and background processing logic;
namely, the style and logic of the public front end are configured, and the background sending requests, the sending format and the processing logic are processed and packaged by a component method, and the method comprises the following steps:
1) setting service, and configuring http request interacting with background;
2) configuring page routing information to enable the page to carry out normal jumping;
3) after the configuration is completed, the basic page and the logic are added, deleted, changed and checked, the data part is set to be in a Freemarker field $ { … } format, and the code is generated to be in a format capable of adding the data.
Based on a Freemarker template, a code generation module correspondingly inputs each parameter in the Java object into the Freemarker template to generate a front end code:
and for the Java readable object generated by the data table structure acquired by JDBC, putting each parameter in the object into a corresponding Freemarker template, and converting the structure of the database into a front-end engineering code.
The system of the present invention is used for implementing the method of the present invention to realize automatic generation of an engineering front-end code based on JDBC, and the implementation principle thereof can refer to the description of the method of the present invention in embodiment 1, and is not described herein again.
The system of the invention provides a templated processing program, which can enable a user to construct different frame templates by directly modifying the templates for generating the codes, thereby realizing the generation of corresponding front-end codes.
Finally, it should be noted that: the above embodiments are only used to illustrate the technical solution of the present invention, and not to limit the same; while the invention has been described in detail and with reference to the foregoing embodiments, it will be understood by those skilled in the art that: the technical solutions described in the foregoing embodiments may still be modified, or some or all of the technical features may be equivalently replaced; such modifications and substitutions do not depart from the spirit and scope of the present invention, and they should be construed as being included in the following claims and description.

Claims (10)

1. A method for automatically generating an engineered front-end code based on JDBC, comprising:
acquiring a database table structure by using JDBC;
performing data conversion on the acquired data table structure according to a preset rule to generate a Java object;
constructing a Freemarker template;
and correspondingly inputting each parameter in the Java object into the Freemarker template to generate a front-end code.
2. The JDBC-based method for automatically generating engineered front end code according to claim 1, wherein said obtaining a database table structure using JDBC comprises
Configuring JDBC;
and reading a database table structure through a Java program based on the configured JDBC.
3. The JDBC-based method for automatically generating engineering front end code according to claim 2, wherein the Java object generated by performing data transformation on the obtained data table structure according to the preset rule comprises
Converting the field type in the database into a front-end field type;
and extracting field lengths and/or non-empty fields in the database, and putting field attributes of the database into Java objects corresponding to the fields.
4. The JDBC-based method of automatically generating engineered front-end code according to claim 3, wherein the constructing of the Freemarker template includes:
extracting a public page;
and configuring a public style and background processing logic for the public page, and processing and packaging the public page by a component method.
5. The JDBC-based method of automatically generating engineered front-end code according to claim 4, wherein said configuring common styles and background processing logic for said common pages, encapsulated by component-wise processing, comprises:
setting service, and configuring an http request interacting with a background;
configuring page routing information to enable a page to carry out normal jumping;
and after the configuration is completed, the basic page and the logic are added, deleted, changed and checked, and the data part is set to be in a Freemarker field format.
6. A system for automatically generating engineering front-end codes based on JDBC is characterized by comprising
The JDBC module is used for acquiring a database table structure;
the data conversion module is used for performing data conversion on the acquired database table structure according to a preset rule to generate a Java object;
the Freemarker configuration module is used for constructing a Freemarker template;
and the code generation module is used for correspondingly inputting each parameter in the Java object into the Freemarker template to generate a front-end code.
7. The JDBC based automatic engineering front-end code generation system of claim 6,
the JDBC module performs corresponding configuration according to databases in different environments by taking JDBC as an interface basis in the process of acquiring the database table structure, and then reads the table structure of the database through a Java program.
8. The JDBC based system of automatically generating engineered front-end code according to claim 6, wherein the data transformation module formats database table structures, including
Converting the field type in the database into a front-end field type;
and extracting field lengths and/or non-empty fields in the database, and putting field attributes of the database into Java objects corresponding to the fields.
9. The JDBC-based system of automatically generating engineered front-end codes according to claim 8, wherein the Freemarker configuration module constructs a Freemarker template comprising
Extracting a public page;
and configuring a public style and background processing logic for the public page, and processing and packaging the public page by a component method.
10. The JDBC-based system for automatically generating engineered front-end code according to claim 9, wherein said configuring common styles and background processing logic for said common pages, packaged by component-wise processing, comprises:
setting service, and configuring an http request interacting with a background;
configuring page routing information to enable a page to carry out normal jumping;
and after the configuration is completed, the basic page and the logic are added, deleted, changed and checked, and the data part is set to be in a Freemarker field format.
CN201911369414.0A 2019-12-26 2019-12-26 Method and system for automatically generating engineering front-end code based on JDBC Pending CN111190587A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911369414.0A CN111190587A (en) 2019-12-26 2019-12-26 Method and system for automatically generating engineering front-end code based on JDBC

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911369414.0A CN111190587A (en) 2019-12-26 2019-12-26 Method and system for automatically generating engineering front-end code based on JDBC

Publications (1)

Publication Number Publication Date
CN111190587A true CN111190587A (en) 2020-05-22

Family

ID=70705859

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911369414.0A Pending CN111190587A (en) 2019-12-26 2019-12-26 Method and system for automatically generating engineering front-end code based on JDBC

Country Status (1)

Country Link
CN (1) CN111190587A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112286509A (en) * 2020-11-13 2021-01-29 北京明略软件系统有限公司 Java generation method, system, electronic device and readable storage medium
CN114063994A (en) * 2022-01-17 2022-02-18 北京安帝科技有限公司 Information storage method and system

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060015839A1 (en) * 2003-03-26 2006-01-19 Peter Owens Development of software systems
CN101553769A (en) * 2005-10-11 2009-10-07 努雅公司 Method and system for tracking and monitoring computer applications
CN101937463A (en) * 2010-09-10 2011-01-05 西安交通大学 Method for automatically generating form for workflow model
CN107479883A (en) * 2017-08-07 2017-12-15 海闻科技有限公司 A kind of code generating method and code generator
CN107608669A (en) * 2017-08-15 2018-01-19 山西云度知识产权服务有限公司 A kind of method based on database table structure automatic generation function and the page
CN109359112A (en) * 2018-10-15 2019-02-19 行吟信息科技(上海)有限公司 A kind of automatic generation method and code generator of code
CN109787768A (en) * 2018-12-12 2019-05-21 平安科技(深圳)有限公司 A kind of authentication configuration method, device and computer readable storage medium

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060015839A1 (en) * 2003-03-26 2006-01-19 Peter Owens Development of software systems
CN101553769A (en) * 2005-10-11 2009-10-07 努雅公司 Method and system for tracking and monitoring computer applications
CN101937463A (en) * 2010-09-10 2011-01-05 西安交通大学 Method for automatically generating form for workflow model
CN107479883A (en) * 2017-08-07 2017-12-15 海闻科技有限公司 A kind of code generating method and code generator
CN107608669A (en) * 2017-08-15 2018-01-19 山西云度知识产权服务有限公司 A kind of method based on database table structure automatic generation function and the page
CN109359112A (en) * 2018-10-15 2019-02-19 行吟信息科技(上海)有限公司 A kind of automatic generation method and code generator of code
CN109787768A (en) * 2018-12-12 2019-05-21 平安科技(深圳)有限公司 A kind of authentication configuration method, device and computer readable storage medium

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
不会飞的鱼: "对Freemarker的简单封装" *

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112286509A (en) * 2020-11-13 2021-01-29 北京明略软件系统有限公司 Java generation method, system, electronic device and readable storage medium
CN114063994A (en) * 2022-01-17 2022-02-18 北京安帝科技有限公司 Information storage method and system

Similar Documents

Publication Publication Date Title
CN105426394B (en) Based on cross-platform mobile report form generation method and system
CN102663103B (en) Configurable method for automatically generating database and accessing data
CN110955410B (en) Code automatic generation method, device, equipment and medium
CN111078555B (en) Test file generation method, system, server and storage medium
CN111367524B (en) Enumeration type design method and device
CN105677324A (en) Method for automatically generating entity type codes
CN107562459B (en) Management system, interface generating/displaying/operating method, medium, and terminal
CN111190587A (en) Method and system for automatically generating engineering front-end code based on JDBC
CN102521008B (en) Program compiling device and method for compiling program
CN104750472A (en) Resource bundle management method and device of terminal application
CN114036183A (en) Data ETL processing method, device, equipment and medium
CN110990011A (en) Data request method of automation interface
CN114138244A (en) Method and device for automatically generating model files, storage medium and electronic equipment
CN112433701A (en) Industrial software development project implementation flow, content and code generation method and device
WO2021259290A1 (en) Stored procedure conversion method and apparatus, and device and storage medium
CN114218906A (en) Vue-based table data formatting component implementation method
JP2001325098A (en) Method for preparing application program method for operating database, method for managing item object, method for controlling module operation and computer- readable recording medium recorded with program for realizing operation, management and control methods
CN113655996A (en) Enterprise-level system generation method based on demand model
CN116521181B (en) Script data processing method, device, equipment and medium based on game system
CN105279032B (en) A kind of method and device of sync cap message and javaBean
CN112732852A (en) Cross-platform space-time big data distributed processing method and software
CN111126012B (en) Custom generation expression method and device
CN113138761A (en) Interface programming method and system
CN114064772A (en) Multi-element data structure automatic conversion method and system for large-screen chart adaptation
CN112685435A (en) Table query method and system based on Vue and Mybatis

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
RJ01 Rejection of invention patent application after publication

Application publication date: 20200522

RJ01 Rejection of invention patent application after publication