CN108304172B - Web development method and web development engine - Google Patents

Web development method and web development engine Download PDF

Info

Publication number
CN108304172B
CN108304172B CN201710025886.9A CN201710025886A CN108304172B CN 108304172 B CN108304172 B CN 108304172B CN 201710025886 A CN201710025886 A CN 201710025886A CN 108304172 B CN108304172 B CN 108304172B
Authority
CN
China
Prior art keywords
database
calling
jsp
data
file
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
CN201710025886.9A
Other languages
Chinese (zh)
Other versions
CN108304172A (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.)
Beijing Changyou Tianxia Network Technologies Co Ltd
Original Assignee
Beijing Changyou Tianxia Network Technologies 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 Beijing Changyou Tianxia Network Technologies Co Ltd filed Critical Beijing Changyou Tianxia Network Technologies Co Ltd
Priority to CN201710025886.9A priority Critical patent/CN108304172B/en
Publication of CN108304172A publication Critical patent/CN108304172A/en
Application granted granted Critical
Publication of CN108304172B publication Critical patent/CN108304172B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

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

Abstract

The web development method and the development engine provided by the invention integrate the database and foreground and background technologies, highly encapsulate ajax requests, database access operation, authority control, web display effect rendering, internationalization and the like. During actual development, a developer only needs to configure table description, execution sql, resource url, table fields and page display permission related to business logic in a database, and a front page only needs to write a jsp file according to a preset jsp label template. The web development engine acquires data from the database, and after the data are processed in the engine, the data are directly delivered to a foreground page through a template to be displayed. When the web development engine provided by the invention is used for development, the background unified interface is called to realize the complex business logic and customized page display effect, thereby reducing the code amount of web development and improving the development efficiency.

Description

Web development method and web development engine
Technical Field
The present invention relates to a web development technology, and more particularly, to a web development method and a web development engine.
Background
Currently, when a developer develops a foreground page, the developer usually replaces the page display content by using a jsp tag and a freemark template engine or by ajax request. The background processes the database logic using mybatis, hibernate or other database middleware.
The web development is carried out in the above way, the foreground, the background and the database are separated, a developer needs to independently design and develop the foreground, the background and the database respectively when carrying out the web development, the content of a jsp label in a web page needs to be converted into a format which can be identified by ajax, and a series of access operations are carried out on the database by generating an ajax request, so that a large amount of code compiling is brought, and the development efficiency is low.
Disclosure of Invention
In view of the above, the present invention provides a web development method and a development engine, which integrate a database and a foreground and background technology, obtain service data from the database, and directly deliver the service data to a foreground page through a template after processing inside the engine, thereby reducing the code amount of web development and improving the development efficiency.
The specific technical scheme is as follows:
a web development method applied to a web development engine comprises the following steps:
when a jsp file written by a user is accessed and a login identifier has the authority of accessing the jsp file, analyzing a plurality of jsp labels in the jsp file to respectively obtain a jsp label identifier corresponding to each jsp label, wherein each jsp label identifier is stored in a database in advance and corresponds to a table name, a table description and an execution sql in the database which are configured in advance;
calling a pre-configured data table and a data description table according to the jsp label identification corresponding to each jsp label to generate a foreground page and a js code;
after the browser finishes loading the foreground page, triggering js code, and initiating an ajax request with configuration parameters to a background;
executing access operation on the database according to the configuration parameters and the calling logic of the background on the database;
and calling an authority information table in the database to obtain the role authority corresponding to the login identification, and displaying an access processing result conforming to the role authority in a browser.
Preferably, the invoking a preconfigured data table and a data description table according to the jsp tag identifier corresponding to each jsp tag to generate a foreground page and a js code includes:
calling the data table to obtain a table name corresponding to the jsp label identification;
calling the data description table to obtain a table description corresponding to the table name;
and generating a foreground page and a js code according to the table description.
Preferably, when the type of the access operation is query, the executing the access operation on the database according to the configuration parameter and the call logic of the background to the database includes:
responding to the ajax request, calling the data table to obtain a table name corresponding to the jsp label identification;
calling the data description table to obtain a table description corresponding to the table name, and generating an sql query statement;
calling the execution sql table, splicing the where condition corresponding to the table name into the query sql statement, and splicing the sequencing condition and the paging condition in the configuration parameters in the ajax request into the query sql statement to obtain a final sql statement;
and executing the final sql statement, and acquiring corresponding service data from the database.
Preferably, when the type of the access operation is import, the executing the access operation on the database according to the configuration parameter and the call logic of the background to the database includes:
responding to the ajax request, receiving and analyzing a file to be imported, and obtaining a database table corresponding to the file;
and calling a uniform uploading interface in a file uploading processing template, and importing the file to be imported into the database table.
Preferably, when the access processing result is service data, the displaying the access processing result conforming to the role authority in a browser includes:
formatting the service data which accord with the role authority into json data, and sending the json data to a browser;
and calling the js code to display the json data on a browser.
Preferably, the method further comprises:
and translating the foreground page content according to a preset language according to an internationalized dictionary configured in the database to realize internationalization.
A web development engine, comprising:
the analysis unit is used for analyzing a plurality of jsp labels in the jsp file when the jsp file written by a user is accessed and the login identification has the authority of accessing the jsp file, so as to respectively obtain the corresponding jsp label identification of each jsp label, wherein each jsp label identification is stored in a database in advance and corresponds to a table name, a table description and an execution sql in the database which are configured in advance;
the calling unit is used for calling a pre-configured data table and a data description table according to the jsp label identification corresponding to each jsp label to generate a foreground page and a js code;
the trigger unit is used for triggering js codes and initiating ajax requests with configuration parameters to a background after the browser finishes loading the foreground page;
the execution unit is used for executing the access operation of the database according to the configuration parameters and the calling logic of the background to the database;
and the display unit is used for calling the authority information table in the database to obtain the role authority corresponding to the login identification, and displaying the access processing result conforming to the role authority in a browser.
Preferably, the invoking unit includes:
the first calling subunit is used for calling the data table to obtain a table name corresponding to the jsp label identifier;
the second calling subunit is used for calling the data description table to obtain the table description corresponding to the table name;
and the generating subunit is used for generating a foreground page and a js code according to the table description.
Preferably, when the type of the access operation is a query, the execution unit includes:
a third calling subunit, configured to, in response to the ajax request, call the data table to obtain a table name corresponding to the jsp tag identifier;
the fourth calling subunit is used for calling the data description table to obtain the table description corresponding to the table name and generating an sql query statement;
a splicing subunit, configured to invoke the execution sql table, splice the where condition corresponding to the table name into the query sql statement, and splice the sorting condition and the paging condition in the configuration parameters in the ajax request into the query sql statement, so as to obtain a final sql statement;
and the execution subunit is used for executing the final sql statement and acquiring corresponding service data from the database.
Preferably, when the type of the access operation is import, the execution unit includes:
the analysis subunit is used for responding to the ajax request, receiving and analyzing a file to be imported, and obtaining a database table corresponding to the file;
and the importing subunit is used for calling a uniform uploading interface in the file uploading processing template and importing the file to be imported into the database table.
Preferably, when the access processing result is service data, the display unit includes:
the formatting subunit is used for formatting the service data which accord with the role authority into json data and sending the json data to a browser;
and the fifth calling subunit is used for calling the js code and displaying the json data on a browser.
Preferably, the web development engine further comprises:
and the internationalization unit is used for translating the foreground page content according to a preset language and an internationalization dictionary configured in the database to realize internationalization.
Compared with the prior art, the invention has the following beneficial effects:
the web development method and the development engine provided by the invention integrate the database and foreground and background technologies, highly encapsulate ajax requests, database access operation, authority control, web display effect rendering, internationalization and the like. During actual development, a developer only needs to configure table description, execution sql, resource url, table fields and page display permission related to business logic in a database, and a front page only needs to write a jsp file according to a preset jsp label template. The web development engine acquires data from the database, and after the data are processed in the engine, the data are directly delivered to a foreground page through a template to be displayed. When the web development engine provided by the invention is used for development, the background unified interface is called to realize the complex business logic and customized page display effect, thereby reducing the code amount of web development and improving the development efficiency.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only embodiments of the present invention, 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 web development method disclosed in this embodiment;
FIG. 2 is a schematic diagram of a web development engine structure disclosed in this embodiment;
FIG. 3 is a schematic diagram of a web development engine structure disclosed in this embodiment;
fig. 4 is a schematic structural diagram of a web development engine disclosed in this embodiment.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
Referring to fig. 1, a web development method disclosed in this embodiment includes the following steps:
s101: when a jsp file written by a user is accessed and a login identifier has the authority of accessing the jsp file, analyzing a plurality of jsp labels in the jsp file to respectively obtain a jsp label identifier corresponding to each jsp label;
the jsp label may be automatically generated by a program, or may be manually edited to have a certain meaning. The jsp tag identification automatically generated by the program may be: 96700059831238657, the manually edited jsp tag identification may be: user _ page _ query. Each jsp label identification is stored in a database in advance, and corresponds to a table name, a table description and an execution sql in the database which are configured in advance;
the user refers to a developer, only the layout needs to be concerned when the foreground development is actually carried out, the development amount is very small, and for example, the display of the form data can be as follows:
<lc:table uid="96700059831238657"dbs="hr"></lc:table>
it should be noted that the configuration data table sys _ data is as follows:
Figure BDA0001209204980000061
wherein the uid is the jsp label identifier.
The configuration data description table sys _ data _ desc is as follows:
Figure BDA0001209204980000062
the configuration execution sql table sys _ execute _ where _ sql table is as follows:
Figure BDA0001209204980000063
Figure BDA0001209204980000071
s102: calling a pre-configured data table and a data description table according to the jsp label identification corresponding to each jsp label to generate a foreground page and a js code;
specifically, the execution process of step S102 is as follows:
calling the data table to obtain a table name corresponding to the jsp label identification;
calling the data description table to obtain a table description corresponding to the table name;
and generating a foreground page and a js code according to the table description.
S103: after the browser finishes loading the foreground page, triggering js code, and initiating an ajax request with configuration parameters to a background;
it should be noted that, whether to automatically trigger the js code is determined according to the configuration in the jsp file, and an ajax request with configuration parameters is initiated to the background, or an ajax request with configuration parameters is initiated to the background by manually triggering a button on a foreground page.
S104: executing access operation on the database according to the configuration parameters and the calling logic of the background on the database;
specifically, when the type of the access operation is query, the specific execution process of step S104 is as follows:
responding to the ajax request, calling the data table to obtain a table name corresponding to the jsp label identification;
calling the data description table to obtain a table description corresponding to the table name, and generating an sql query statement;
calling the execution sql table, splicing the where condition corresponding to the table name into the query sql statement, and splicing the sequencing condition and the paging condition in the configuration parameters in the ajax request into the query sql statement to obtain a final sql statement;
and executing the final sql statement, and acquiring corresponding service data from the database.
When the type of the access operation is import, the specific execution process of step S104 is as follows:
responding to the ajax request, receiving and analyzing a file to be imported, and obtaining a database table corresponding to the file;
and calling a uniform uploading interface in a file uploading processing template, and importing the file to be imported into the database table.
S105: and calling an authority information table in the database to obtain the role authority corresponding to the login identification, and displaying an access processing result conforming to the role authority in a browser.
It should be noted that, according to the configuration of the authority information table in the database, the access authority control of the roles corresponding to the user, the department, the post, and the like to the resource url, the html tag and the database table field is realized.
Specifically, when the access processing result is the service data, the specific execution process of step S105 is as follows:
formatting the service data which accord with the role authority into json data, and sending the json data to a browser;
and calling the js code to display the json data on a browser.
It is understood that when the access operation to the database is query or export, the access processing result is service data, and when the access operation to the database is add, delete, modify, or import, the access processing result is access operation completion information, for example: "modification is completed" or "file is imported".
Specifically, the following is an example of code for executing the final sql, formatting the service data into json data, and sending the json data to a browser:
Figure BDA0001209204980000081
Figure BDA0001209204980000091
it should be noted that the method further includes:
and translating the foreground page content according to a preset language according to an internationalized dictionary configured in the database to realize internationalization.
The web development method provided by the embodiment integrates the database and foreground and background technologies, and highly encapsulates ajax requests, database access operations, authority control, web display effect rendering, internationalization and the like. During actual development, a developer only needs to configure table description, execution sql, resource url, table fields and page display permission related to business logic in a database, and a front page only needs to write a jsp file according to a preset jsp label template. The web development engine acquires data from the database, and after the data are processed in the engine, the data are directly delivered to a foreground page through a template to be displayed. When the web development method provided by the invention is used for development, the background unified interface is called to realize the complex business logic and customized page display effect, thereby reducing the code amount of web development and improving the development efficiency.
Referring to fig. 2, based on the web development method disclosed in the foregoing embodiment, the present embodiment correspondingly discloses a web development engine, which includes:
the analysis unit 101 is configured to, when a jsp file written by a user is accessed and a login identifier has a right to access the jsp file, analyze a plurality of jsp tags in the jsp file to obtain a jsp tag identifier corresponding to each jsp tag, where each jsp tag identifier is pre-stored in a database and corresponds to a table name, a table description, and an execution sql in the database, which are pre-configured;
the calling unit 102 is configured to call a preconfigured data table and a data description table according to a jsp tag identifier corresponding to each jsp tag, and generate a foreground page and a js code;
the triggering unit 103 is configured to trigger a js code after the browser finishes loading the foreground page, and initiate an ajax request with configuration parameters to a background;
an execution unit 104, configured to execute an access operation on the database according to the configuration parameter and the call logic of the background to the database;
and the display unit 105 is configured to call the authority information table in the database to obtain the role authority corresponding to the login identifier, and display the access processing result conforming to the role authority in the browser.
Referring to fig. 3, the calling unit 102 includes:
a first calling subunit 106, configured to call the data table to obtain a table name corresponding to the jsp tag identifier;
a second calling subunit 107, configured to call the data description table to obtain a table description corresponding to the table name;
and the generating subunit 108 is configured to generate a foreground page and a js code according to the table description.
When the type of the access operation is a query, the execution unit 104 includes:
a third invoking subunit 109, configured to invoke the data table in response to the ajax request, to obtain a table name corresponding to the jsp tag identifier;
a fourth calling subunit 110, configured to call the data description table, obtain a table description corresponding to the table name, and generate an sql query statement;
a splicing subunit 111, configured to invoke the execution sql table, splice the where condition corresponding to the table name into the query sql statement, and splice the sorting condition and the paging condition in the configuration parameters in the ajax request into the query sql statement, so as to obtain a final sql statement;
and an execution subunit 112, configured to execute the final sql statement, and obtain corresponding service data from the database.
When the access processing result is service data, the display unit 105 includes:
a formatting subunit 113, configured to format, into json data, the service data that conforms to the role permission, and send the json data to a browser;
and a fifth calling subunit 114, configured to call the js code, and display the json data on a browser.
The web development engine further comprises:
and an internationalization unit 115, configured to translate the foreground page content according to a preset language according to an internationalization dictionary configured in the database, so as to implement internationalization.
Referring to fig. 4, when the type of the access operation is import, the execution unit 105 includes:
an analysis subunit 116, configured to receive and analyze a file to be imported in response to the ajax request, so as to obtain a database table corresponding to the file;
and the importing subunit 117 is configured to invoke a unified uploading interface in the file uploading processing template, and import the file to be imported into the database table.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present invention. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the invention. Thus, the present invention is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.

Claims (12)

1. A web development method applied to a web development engine comprises the following steps:
when a jsp file written by a user is accessed and a login identifier has the authority of accessing the jsp file, analyzing a plurality of jsp labels in the jsp file to respectively obtain a jsp label identifier corresponding to each jsp label, wherein each jsp label identifier is stored in a database in advance and corresponds to a table name, a table description and an execution sql table in the database which are configured in advance;
calling a pre-configured data table and a data description table according to the jsp label identification corresponding to each jsp label to generate a foreground page and a js code;
after the browser finishes loading the foreground page, triggering js code, and initiating an ajax request with configuration parameters to a background;
executing access operation on the database according to the configuration parameters and the calling logic of the background on the database;
and calling an authority information table in the database to obtain the role authority corresponding to the login identification, and displaying an access processing result conforming to the role authority in a browser.
2. The method according to claim 1, wherein the step of calling a preconfigured data table and a data description table according to a jsp tag identifier corresponding to each jsp tag to generate a foreground page and a js code comprises:
calling the data table to obtain a table name corresponding to the jsp label identification;
calling the data description table to obtain a table description corresponding to the table name;
and generating a foreground page and a js code according to the table description.
3. The method according to claim 1, wherein when the type of the access operation is a query, the performing the access operation on the database according to the configuration parameters and the call logic of the background on the database comprises:
responding to the ajax request, calling the data table to obtain a table name corresponding to the jsp label identification;
calling the data description table to obtain a table description corresponding to the table name, and generating an sql query statement;
calling the execution sql table, splicing the where condition corresponding to the table name into the query sql statement, and splicing the sequencing condition and the paging condition in the configuration parameters in the ajax request into the query sql statement to obtain a final sql statement;
and executing the final sql statement, and acquiring corresponding service data from the database.
4. The method according to claim 1, wherein when the type of the access operation is import, the performing the access operation on the database according to the configuration parameters and the call logic of the background to the database comprises:
responding to the ajax request, receiving and analyzing a file to be imported, and obtaining a database table corresponding to the file;
and calling a uniform uploading interface in a file uploading processing template, and importing the file to be imported into the database table.
5. The method according to claim 1, wherein when the access processing result is service data, the displaying the access processing result conforming to the role authority in a browser includes:
formatting the service data which accord with the role authority into json data, and sending the json data to a browser;
and calling the js code to display the json data on a browser.
6. The method of claim 1, further comprising:
and translating the foreground page content according to a preset language according to an internationalized dictionary configured in the database to realize internationalization.
7. A web development engine, comprising:
the analysis unit is used for analyzing a plurality of jsp labels in the jsp file to respectively obtain a jsp label identifier corresponding to each jsp label when the jsp file written by a user is accessed and the login identifier has the authority of accessing the jsp file, wherein each jsp label identifier is stored in a database in advance and corresponds to a table name, a table description and an execution sql table in the database which are configured in advance;
the calling unit is used for calling a pre-configured data table and a data description table according to the jsp label identification corresponding to each jsp label to generate a foreground page and a js code;
the trigger unit is used for triggering js codes and initiating ajax requests with configuration parameters to a background after the browser finishes loading the foreground page;
the execution unit is used for executing the access operation of the database according to the configuration parameters and the calling logic of the background to the database;
and the display unit is used for calling the authority information table in the database to obtain the role authority corresponding to the login identification, and displaying the access processing result conforming to the role authority in a browser.
8. The web development engine of claim 7, wherein the call unit comprises:
the first calling subunit is used for calling the data table to obtain a table name corresponding to the jsp label identifier;
the second calling subunit is used for calling the data description table to obtain the table description corresponding to the table name;
and the generating subunit is used for generating a foreground page and a js code according to the table description.
9. The web development engine of claim 7, wherein when the type of the access operation is a query, the execution unit comprises:
a third calling subunit, configured to, in response to the ajax request, call the data table to obtain a table name corresponding to the jsp tag identifier;
the fourth calling subunit is used for calling the data description table to obtain the table description corresponding to the table name and generating an sql query statement;
a splicing subunit, configured to invoke the execution sql table, splice the where condition corresponding to the table name into the query sql statement, and splice the sorting condition and the paging condition in the configuration parameters in the ajax request into the query sql statement, so as to obtain a final sql statement;
and the execution subunit is used for executing the final sql statement and acquiring corresponding service data from the database.
10. The web development engine of claim 7, wherein when the type of the access operation is import, the execution unit comprises:
the analysis subunit is used for responding to the ajax request, receiving and analyzing a file to be imported, and obtaining a database table corresponding to the file;
and the importing subunit is used for calling a uniform uploading interface in the file uploading processing template and importing the file to be imported into the database table.
11. The web development engine according to claim 7, wherein when the access processing result is business data, the display unit includes:
the formatting subunit is used for formatting the service data which accord with the role authority into json data and sending the json data to a browser;
and the fifth calling subunit is used for calling the js code and displaying the json data on a browser.
12. The web development engine of claim 7, wherein the web development engine further comprises:
and the internationalization unit is used for translating the foreground page content according to a preset language and an internationalization dictionary configured in the database to realize internationalization.
CN201710025886.9A 2017-01-13 2017-01-13 Web development method and web development engine Active CN108304172B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710025886.9A CN108304172B (en) 2017-01-13 2017-01-13 Web development method and web development engine

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710025886.9A CN108304172B (en) 2017-01-13 2017-01-13 Web development method and web development engine

Publications (2)

Publication Number Publication Date
CN108304172A CN108304172A (en) 2018-07-20
CN108304172B true CN108304172B (en) 2021-10-08

Family

ID=62872439

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710025886.9A Active CN108304172B (en) 2017-01-13 2017-01-13 Web development method and web development engine

Country Status (1)

Country Link
CN (1) CN108304172B (en)

Families Citing this family (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109032571A (en) * 2018-08-28 2018-12-18 苏州艾利特机器人有限公司 A kind of robot process generation method
CN109446042B (en) * 2018-10-12 2021-12-14 安徽南瑞中天电力电子有限公司 Log management method and system for intelligent electric equipment
CN109739504B (en) * 2018-12-28 2022-04-01 浙江网新恩普软件有限公司 Method for automatically generating H5 service handling page according to background configuration
CN109814865B (en) * 2019-01-18 2022-06-03 四川长虹电器股份有限公司 Mobile application page generation method based on json data format
CN110795449A (en) * 2019-09-10 2020-02-14 紫光云技术有限公司 BS architecture-based environment-friendly public opinion system
CN111104161B (en) * 2019-12-03 2022-07-08 江苏艾佳家居用品有限公司 Automatic approval execution method for database sql script
CN111552688A (en) * 2020-03-18 2020-08-18 北京达佳互联信息技术有限公司 Data export method and device and electronic equipment
CN112905176B (en) * 2021-02-08 2024-02-09 中国工商银行股份有限公司 Web system back-end implementation method and device based on SpringBoot
CN113094039B (en) * 2021-04-12 2023-01-24 中国兵器装备集团自动化研究所有限公司 Automatic code generation system based on database table
CN113590913B (en) * 2021-06-17 2023-06-16 青岛海尔科技有限公司 Data resource display method and device, storage medium and electronic device
CN113656724B (en) * 2021-10-20 2022-02-15 深圳市信润富联数字科技有限公司 Method and system for dynamically configuring webpage function based on web page

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102043621A (en) * 2010-12-01 2011-05-04 北京迅捷英翔网络科技有限公司 Webpage development method based on Javascript tag library
CN102945287A (en) * 2012-11-29 2013-02-27 南京睿恒智晟软件科技有限公司 Java server page (JSP) data automatic paging java standard tag library (JSTL) label technology and application
CN103473106A (en) * 2013-09-30 2013-12-25 迈普通信技术股份有限公司 Method and system for generating page
CN105227560A (en) * 2015-10-14 2016-01-06 浪潮集团有限公司 A kind of method of control of authority and device
CN105549982A (en) * 2016-01-14 2016-05-04 国网山东省电力公司物资公司 Automated development platform based on model configuration

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7162687B2 (en) * 2002-05-31 2007-01-09 Sun Microsystems, Inc. JSP tag libraries and web services
US8903702B2 (en) * 2011-08-31 2014-12-02 International Business Machines Corporation Generating specifications for expression language expressions and tag libraries

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102043621A (en) * 2010-12-01 2011-05-04 北京迅捷英翔网络科技有限公司 Webpage development method based on Javascript tag library
CN102945287A (en) * 2012-11-29 2013-02-27 南京睿恒智晟软件科技有限公司 Java server page (JSP) data automatic paging java standard tag library (JSTL) label technology and application
CN103473106A (en) * 2013-09-30 2013-12-25 迈普通信技术股份有限公司 Method and system for generating page
CN105227560A (en) * 2015-10-14 2016-01-06 浪潮集团有限公司 A kind of method of control of authority and device
CN105549982A (en) * 2016-01-14 2016-05-04 国网山东省电力公司物资公司 Automated development platform based on model configuration

Also Published As

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

Similar Documents

Publication Publication Date Title
CN108304172B (en) Web development method and web development engine
US11403364B2 (en) Method and terminal device for extracting web page content
US20190197068A1 (en) Page rendering method, device, and data storage medium
WO2017088509A1 (en) Page customization method and device
CN104461484B (en) The implementation method and device of front-end template
US11003835B2 (en) System and method to convert a webpage built on a legacy framework to a webpage compatible with a target framework
CN102945287A (en) Java server page (JSP) data automatic paging java standard tag library (JSTL) label technology and application
CN104407863A (en) Abstract control model programming device and method
CN108121539B (en) Component processing method and device
CN111831542B (en) API application debugging method and device and storage medium
CN110297636A (en) A kind of automatic production of HTML page and parameter management method based on page configuration file, system and device
CN112328342B (en) To-do item processing method and device based on online document
CN112395848A (en) Rich text display method and device, computer equipment and storage medium
CN108733370B (en) Stylized display method, device, terminal and storage medium of native APP
CN112528619A (en) Page template file generation method and device, electronic equipment and storage medium
CN111158687B (en) Interface generation method and device of JAVA plugin, computer equipment and storage medium
CN102253986A (en) Method and device for improving webpage displaying effect in multiple terminals
CN112068911A (en) Method, device, system, equipment and medium for generating electronic form
CN110941779A (en) Page loading method and device, storage medium and electronic equipment
CN112181437B (en) Gray release method and device based on Devops, computer equipment and storage medium
CN113934832A (en) Interactive processing method, device, equipment, medium and program product based on session
CN109086342A (en) The method of mass production and O&amp;M website form, medium and terminal
CN106126517B (en) Method and device for converting PC (personal computer) end application page into mobile end application page
WO2022099913A1 (en) Interface configuration method and apparatus, and device and medium
CN115309470A (en) Method, device and equipment for loading widgets and storage 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