CN111949260A - Mobile terminal service configuration method and system - Google Patents
Mobile terminal service configuration method and system Download PDFInfo
- Publication number
- CN111949260A CN111949260A CN202010583779.XA CN202010583779A CN111949260A CN 111949260 A CN111949260 A CN 111949260A CN 202010583779 A CN202010583779 A CN 202010583779A CN 111949260 A CN111949260 A CN 111949260A
- Authority
- CN
- China
- Prior art keywords
- service
- module
- sub
- service module
- plug
- 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
Links
- 238000000034 method Methods 0.000 title claims abstract description 26
- 230000003068 static effect Effects 0.000 claims description 15
- 238000011161 development Methods 0.000 description 6
- 230000008878 coupling Effects 0.000 description 3
- 238000010168 coupling process Methods 0.000 description 3
- 238000005859 coupling reaction Methods 0.000 description 3
- 238000010586 diagram Methods 0.000 description 2
- 238000012356 Product development Methods 0.000 description 1
- 230000009286 beneficial effect Effects 0.000 description 1
- 230000007547 defect Effects 0.000 description 1
- 238000005516 engineering process Methods 0.000 description 1
- 239000000284 extract Substances 0.000 description 1
- 230000010354 integration Effects 0.000 description 1
- 238000012986 modification Methods 0.000 description 1
- 230000004048 modification Effects 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/30—Creation or generation of source code
- G06F8/35—Creation or generation of source code model driven
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/445—Program loading or initiating
- G06F9/44521—Dynamic linking or loading; Link editing at or after load time, e.g. Java class loading
- G06F9/44526—Plug-ins; Add-ons
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Stored Programmes (AREA)
Abstract
A method and a system for configuring mobile terminal services are provided, the method comprises: creating a main service module, a sub-service module loading management module and a plurality of sub-service modules; when the main service module has the configuration requirement, the required sub-service modules are determined according to the configuration requirement, and the required sub-service modules are freely spliced and combined into the main service module by the sub-service module loading management module, so that the system is quickly formed. The invention divides the service module into a plurality of independent sub-service modules, and can quickly splice and combine different service module units through simple configuration operation to quickly generate a customized system containing different service units so as to adapt to users with different requirements.
Description
Technical Field
The invention relates to the technical field of mobile terminals, in particular to a mobile terminal service configuration method and a mobile terminal service configuration system.
Background
With the rapid development of mobile device performance in recent years, mobile phones have become devices with very high usage rate in people's life, and products of various companies are all focused on expanding business products to mobile phones. Due to the fact that a large number of clients need mobile phone end apps and the requirement of the clients is urgent, the development workload of the traditional mobile end apps is large. And when a customized system with part of the same services is developed for customers in the same field, the development work coupling degree of the mobile phone end is higher. In order to reduce the coupling degree of mobile terminal app development work and improve development efficiency, service modules can be reused, a technology is urgently needed to enable the whole development work to be broken into parts, different service module units can be freely spliced and combined to form a system, and user requirements are quickly responded, so that the quick configuration of the service module units is generated at the mobile phone end.
In the traditional mobile end system customized product development process, even if business experience is accumulated, only a new project engineering can be created, existing business modules are copied, and finally customization is performed, so that the efficiency is low, and codes are disordered.
In summary, the prior art has the following main disadvantages:
1. the code coupling degree is high, and the codes are not clear enough when all the service modules are in the same project.
2. Developing a customized system for a new user is inefficient.
Disclosure of Invention
In view of the technical defects and technical drawbacks in the prior art, embodiments of the present invention provide a method and a system for configuring a mobile terminal service, which overcome the above problems or at least partially solve the above problems, and the specific scheme is as follows:
as a first aspect of the present invention, a method for configuring a mobile-side service is provided, where the method includes:
creating a main service module, a sub-service module loading management module and a plurality of sub-service modules;
when the main service module has the configuration requirement, the required sub-service modules are determined according to the configuration requirement, and the required sub-service modules are freely spliced and combined into the main service module by the sub-service module loading management module, so that the system is quickly formed.
Further, when the configuration requirement is a static configuration requirement;
constructing an xml analyzing module in the main service module, wherein the xml analyzing module is used for analyzing the configuration information file;
the main service module sends a configuration information request to the xml analysis module based on the static configuration requirement, the xml analysis module analyzes the configuration information file in the configuration information request and obtains the xml file containing the configuration information, and the main service module loads the corresponding sub-service module according to the configuration information of the xml file and presents the required service to the user.
Further, the method further comprises: and creating an xml file in the main service module, and configuring the sub-service modules required to be used in the xml file to form the xml file containing the configuration information when the main service module has a static configuration requirement.
Further, when the configuration requirement is a dynamic configuration requirement;
building a js plug-in registration management module and a js plug-in based on JavaScript;
the main service module sends a request for loading the js plug-in to the js plug-in registration management module, the js plug-in registration management module registers a main service module object based on the request for loading the js plug-in sent by the main service module, and registers the main service module object in the js plug-in and calls the js plug-in by utilizing the principle of a java and JavaScript connecting bridge;
and the js plug-in judges the required service information according to the service variable in the dynamic configuration requirement, returns the service information to the main service module, and enables the main service module to obtain the required sub-service module according to the service information.
Further, the method further comprises:
when the sub-service module has the dynamic configuration requirement, the main service module firstly judges whether the sub-service module needs to load the js plug-in according to the configuration information of the dynamic configuration requirement, if so, the main service module sends a request for loading the js plug-in to the js plug-in registration management module,
the js plug-in registration management module registers the sub-service module object into the js plug-in and starts the sub-service module by utilizing the principle of java and JavaScript connection bridge, the sub-service module calls the js plug-in, the js plug-in judges required service information according to the service variable in the dynamic configuration requirement, the service information is returned to the sub-service module, and the sub-service module presents the required service to the user according to the service information.
As a second aspect of the present invention, a mobile terminal service configuration system is provided, which includes a main service module, a sub-service module loading management module, and a plurality of sub-service modules;
the sub-service module is used for being freely spliced and combined into the main service module;
the sub-service module loading management module is used for freely splicing and combining the required sub-service modules into the main service module;
the main service module is used for integrating services, when the main service module has configuration requirements, the required sub-service modules are determined according to the configuration requirements, and the sub-service modules are loaded by the sub-service modules and freely spliced and combined into the main service module, so that a system is quickly formed.
Furthermore, an xml parsing module is constructed in the main service module, and the xml parsing module is used for parsing the configuration information file;
the main service module is also used for sending a configuration information request to the xml analysis module based on the static configuration requirement when the configuration requirement is the static configuration requirement, receiving the xml file analyzed by the xml analysis module, loading the corresponding sub service module according to the configuration information of the xml file, and presenting the required service to the user;
the xml analyzing module is used for analyzing the configuration information file in the configuration information request and acquiring the xml file containing the configuration information, wherein the configuration information comprises the required sub-service module.
Further, the system further comprises an xml file creating module, wherein the xml file creating module is used for creating an xml file in the main service module, and when the main service module has a static configuration requirement, the sub-service modules required to be used are configured in the xml file to form the xml file containing the configuration information.
Furthermore, the system also comprises a js plug-in registration management module and a js plug-in;
the main service module is also used for sending a request for loading the js plug-in to the js plug-in registration management module when the configuration requirement is a dynamic configuration requirement;
the js plug-in registration management module is used for registering a main service module object based on a request for loading the js plug-in sent by the main service module, registering the main service module object in the js plug-in by utilizing the principle of a java and JavaScript connecting bridge and calling the js plug-in;
and the js plug-in is used for judging the required service information according to the service variable in the dynamic configuration requirement, returning the service information to the main service module, and enabling the main service module to obtain the required sub-service module according to the service information.
Further, the method comprises the following steps of;
the main service module is also used for judging whether the sub service module needs to load the js plug-in according to the configuration information of the dynamic configuration requirement when the sub service module has the dynamic configuration requirement, and if so, the main service module sends a request for loading the js plug-in to the js plug-in registration management module;
the js plug-in registration management module is also used for registering the sub-service module object into the js plug-in and starting the sub-service module by utilizing the principle of java and JavaScript connection bridge,
the sub-service module is also used for calling the js plug-in when being started, receiving the service information returned by the js plug-in and presenting the required service to the user according to the service information;
and the js plug-in is also used for judging the required service information according to the service variable in the dynamic configuration requirement and returning the service information to the sub-service module.
The invention has the following beneficial effects:
the invention provides a mobile terminal service configuration method and a mobile terminal service configuration system, which divide a service module into a plurality of independent sub-service modules, can quickly splice and combine different service module units through simple configuration operation, and quickly generate a customized system containing different service units so as to adapt to users with different requirements.
Drawings
Fig. 1 is a flowchart of a method for configuring a mobile terminal service according to an embodiment of the present invention;
fig. 2 is a structural diagram of a mobile terminal service configuration system according to an embodiment of the present invention;
fig. 3 is a schematic diagram illustrating an overall operation principle of a mobile terminal service configuration system according to an embodiment of the present invention.
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 present invention, and 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 invention.
As shown in fig. 1, as a first embodiment of the present invention, a method for configuring a mobile terminal service is provided, where the method includes:
creating a main service module, a sub-service module loading management module and a plurality of sub-service modules;
when the main service module has the configuration requirement, the required sub-service modules are determined according to the configuration requirement, and the required sub-service modules are freely spliced and combined into the main service module by the sub-service module loading management module, so that the system is quickly formed.
The invention divides the service module into a plurality of independent sub-service modules, and can quickly splice and combine different service module units through simple configuration operation to quickly generate a customized system containing different service units so as to adapt to users with different requirements.
Preferably, when the configuration requirement is a static configuration requirement;
constructing an xml analyzing module in the main service module, wherein the xml analyzing module is used for analyzing the configuration information file;
the main service module sends a configuration information request to the xml analysis module based on the static configuration requirement, the xml analysis module analyzes a configuration information file in the configuration information request and obtains an xml file containing configuration information, the main service module loads a corresponding sub-service module according to the configuration information of the xml file and presents the required service to a user, wherein the configuration information comprises the required sub-service module, and the configuration information request comprises the xml file containing the configuration information.
Preferably, the method further comprises: and creating an xml file in the main service module, and configuring the sub-service modules required to be used in the xml file to form the xml file containing the configuration information when the main service module has a static configuration requirement.
Preferably, when the configuration requirement is a dynamic configuration requirement:
constructing a JavaScript-based js (JavaScript, hereinafter referred to as js) plug-in registration management module and a js plug-in;
the main service module sends a request for loading the js plug-in to the js plug-in registration management module, the js plug-in registration management module registers a main service module object based on the request for loading the js plug-in sent by the main service module, and registers the main service module object in the js plug-in and calls the js plug-in by utilizing the principle of a java and JavaScript connecting bridge;
and the js plug-in judges the required service information according to the service variable in the dynamic configuration requirement, returns the service information to the main service module, and enables the main service module to obtain the required sub-service module according to the service information.
Preferably, the method further comprises:
when the sub-service module has the dynamic configuration requirement, the main service module firstly judges whether the sub-service module needs to load the js plug-in according to the configuration information of the dynamic configuration requirement, if so, the main service module sends a request for loading the js plug-in to the js plug-in registration management module,
the js plug-in registration management module registers the sub-service module object into the js plug-in and starts the sub-service module by utilizing the principle of java and JavaScript connection bridge, the sub-service module calls the js plug-in, the js plug-in judges required service information according to the service variable in the dynamic configuration requirement, the service information is returned to the sub-service module, and the sub-service module presents the required service to the user according to the service information.
The invention, create js plug-in file in the business module related to changing the business logic according to the business variable; loading js plug-in logic when adding modules in the project, registering module objects into the js plug-ins by utilizing the principle of java and JavaScript connection bridge, compiling js plug-in codes, and constructing logic for finishing dynamic service configuration according to service variables by quoting the module objects; and configuring whether each sub-service module needs to load js plug-in configuration and each js plug-in path configuration in the xml file of the main service module, thereby realizing the dynamic configuration of the sub-service modules.
As shown in fig. 2, the system is further divided into a dependency layer, a configuration layer, a main module layer and a sub-module layer; the main module layer comprises a main service module layer, the sub module layer comprises a plurality of independent sub service modules, the dependence layer comprises an xml analysis module, a sub service unit loading management module and a js plug-in registration management module, the xml analysis module is used for analyzing an xml configuration file, the sub service unit loading management module is used for splicing and combining service units, the js plug-in registration management module is used for uniformly registering native objects in a project into the js plug-in, the configuration layer comprises an xml file and the js plug-in, the xml file is used for configuring service units required by compiling, and the js file is used for configuring service units which need to be judged according to service variables during operation. The main module layer comprises a main service module which is responsible for service integration, the sub-module layer comprises sub-service modules which are freely spliced and combined into the main service module, and therefore a system is quickly formed.
As shown in fig. 3, for the overall operation principle structure of the system of the present invention, after a user clicks and starts the system application, the main service module sends a configuration information request to the xml parsing module, the xml parsing module obtains an xml file containing configuration information according to the configuration information request, and the main service module loads a corresponding sub-service module according to the configuration information in the xml file, and presents a required service to the user; if the main service module has a dynamic configuration requirement, the main service module continuously sends a request for loading the js plug-in to the js plug-in registration management module, the js plug-in registration management module registers a main service module object and calls the js plug-in based on the request for loading the js plug-in sent by the main service module, the js plug-in judges required service information according to the service variable in the dynamic configuration requirement, and returns the service information to the main service module, so that the main service module extracts the required sub-service module according to the service information. When a user clicks the function of the sub-service module, the main service module judges whether the sub-service module needs to load the js plug-in or not according to the configuration information in the xml, if so, the main service module sends a request for loading the js plug-in to the js plug-in registration management module, the js plug-in registration management module registers the sub-service module object and starts the sub-service module, the sub-service module calls the js plug-in, the js plug-in judges the required service according to the service variable and returns information to the sub-module, and the sub-module presents the required service to the user.
The above description is only for the purpose of illustrating the preferred embodiments of the present invention and is not to be construed as limiting the invention, and any modifications, equivalents, improvements and the like that fall within the spirit and principle of the present invention are intended to be included therein.
Claims (10)
1. A method for configuring a mobile-side service, the method comprising:
creating a main service module, a sub-service module loading management module and a plurality of sub-service modules;
when the main service module has the configuration requirement, the required sub-service modules are determined according to the configuration requirement, and the required sub-service modules are freely spliced and combined into the main service module by the sub-service module loading management module, so that the system is quickly formed.
2. The method according to claim 1, wherein when the configuration requirement is a static configuration requirement;
constructing an xml analyzing module in the main service module, wherein the xml analyzing module is used for analyzing the configuration information file;
the main service module sends a configuration information request to the xml analysis module based on the static configuration requirement, the xml analysis module analyzes the configuration information file in the configuration information request and obtains the xml file containing the configuration information, and the main service module loads the corresponding sub-service module according to the configuration information of the xml file and presents the required service to the user.
3. The method of claim 2, wherein the method further comprises: and creating an xml file in the main service module, and configuring the sub-service modules required to be used in the xml file to form the xml file containing the configuration information when the main service module has a static configuration requirement.
4. The method according to claim 1, wherein when the configuration requirement is a dynamic configuration requirement;
building a js plug-in registration management module and a js plug-in based on JavaScript;
the main service module sends a request for loading the js plug-in to the js plug-in registration management module, the js plug-in registration management module registers a main service module object based on the request for loading the js plug-in sent by the main service module, and registers the main service module object in the js plug-in and calls the js plug-in by utilizing the principle of a java and JavaScript connecting bridge;
and the js plug-in judges the required service information according to the service variable in the dynamic configuration requirement, returns the service information to the main service module, and enables the main service module to obtain the required sub-service module according to the service information.
5. The method of claim 4, wherein the method further comprises:
when the sub-service module has the dynamic configuration requirement, the main service module firstly judges whether the sub-service module needs to load the js plug-in according to the configuration information of the dynamic configuration requirement, if so, the main service module sends a request for loading the js plug-in to the js plug-in registration management module,
the js plug-in registration management module registers the sub-service module object into the js plug-in and starts the sub-service module by utilizing the principle of java and JavaScript connection bridge, the sub-service module calls the js plug-in, the js plug-in judges required service information according to the service variable in the dynamic configuration requirement, the service information is returned to the sub-service module, and the sub-service module presents the required service to the user according to the service information.
6. A mobile terminal service configuration system is characterized by comprising a main service module, a sub-service module loading management module and a plurality of sub-service modules;
the sub-service module is used for being freely spliced and combined into the main service module;
the sub-service module loading management module is used for freely splicing and combining the required sub-service modules into the main service module;
the main service module is used for integrating services, when the main service module has configuration requirements, the required sub-service modules are determined according to the configuration requirements, and the sub-service modules are loaded by the sub-service modules and freely spliced and combined into the main service module, so that a system is quickly formed.
7. The system according to claim 6, wherein an xml parsing module is configured in the main service module, and the xml parsing module is configured to parse a configuration information file;
the main service module is also used for sending a configuration information request to the xml analysis module based on the static configuration requirement when the configuration requirement is the static configuration requirement, receiving the xml file analyzed by the xml analysis module, loading the corresponding sub service module according to the configuration information of the xml file, and presenting the required service to the user;
and the xml analyzing module is used for analyzing the configuration information file in the configuration information request and acquiring the xml file containing the configuration information.
8. The system according to claim 7, further comprising an xml file creation module, wherein the xml file creation module is configured to create an xml file in the main service module, and when the main service module has a static configuration requirement, configure the sub-service modules to be used in the xml file to form an xml file containing the configuration information.
9. The system for configuring services at mobile end according to claim 6, wherein the system further comprises a js plug-in registration management module and a js plug-in;
the main service module is also used for sending a request for loading the js plug-in to the js plug-in registration management module when the configuration requirement is a dynamic configuration requirement;
the js plug-in registration management module is used for registering a main service module object based on a request for loading the js plug-in sent by the main service module, registering the main service module object in the js plug-in by utilizing the principle of a java and JavaScript connecting bridge and calling the js plug-in;
and the js plug-in is used for judging the required service information according to the service variable in the dynamic configuration requirement, returning the service information to the main service module, and enabling the main service module to obtain the required sub-service module according to the service information.
10. The mobile-side service provisioning system according to claim 9, wherein;
the main service module is also used for judging whether the sub service module needs to load the js plug-in according to the configuration information of the dynamic configuration requirement when the sub service module has the dynamic configuration requirement, and if so, the main service module sends a request for loading the js plug-in to the js plug-in registration management module;
the js plug-in registration management module is also used for registering the sub-service module object into the js plug-in and starting the sub-service module by utilizing the principle of java and JavaScript connection bridge,
the sub-service module is also used for calling the js plug-in when being started, receiving the service information returned by the js plug-in and presenting the required service to the user according to the service information;
and the js plug-in is also used for judging the required service information according to the service variable in the dynamic configuration requirement and returning the service information to the sub-service module.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202010583779.XA CN111949260A (en) | 2020-06-24 | 2020-06-24 | Mobile terminal service configuration method and system |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202010583779.XA CN111949260A (en) | 2020-06-24 | 2020-06-24 | Mobile terminal service configuration method and system |
Publications (1)
Publication Number | Publication Date |
---|---|
CN111949260A true CN111949260A (en) | 2020-11-17 |
Family
ID=73337248
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN202010583779.XA Pending CN111949260A (en) | 2020-06-24 | 2020-06-24 | Mobile terminal service configuration method and system |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN111949260A (en) |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113256428A (en) * | 2021-04-07 | 2021-08-13 | 深圳市怡化时代科技有限公司 | Method, device, equipment and storage medium for realizing financial terminal business function |
Citations (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN101742727A (en) * | 2009-12-14 | 2010-06-16 | 中兴通讯股份有限公司 | Terminal device and method for customizing functional modules thereof and server |
CN103067509A (en) * | 2012-12-30 | 2013-04-24 | 乐视网信息技术(北京)股份有限公司 | System and method of modularized software updating |
CN107918516A (en) * | 2017-10-17 | 2018-04-17 | 广东广业开元科技有限公司 | A kind of system and method for Visual Dynamic configuration generation chart |
CN107959580A (en) * | 2016-10-17 | 2018-04-24 | 中兴通讯股份有限公司 | The method and apparatus of configuration service |
CN109766503A (en) * | 2018-12-28 | 2019-05-17 | 深圳联友科技有限公司 | A kind of modular front end frame construction method and device |
CN110580183A (en) * | 2019-09-02 | 2019-12-17 | 江苏艾佳家居用品有限公司 | Mobile application modularization implementation method |
CN111309291A (en) * | 2020-01-19 | 2020-06-19 | 北京航空航天大学 | Modularized embedded software architecture, customization method and customization system thereof |
-
2020
- 2020-06-24 CN CN202010583779.XA patent/CN111949260A/en active Pending
Patent Citations (7)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN101742727A (en) * | 2009-12-14 | 2010-06-16 | 中兴通讯股份有限公司 | Terminal device and method for customizing functional modules thereof and server |
CN103067509A (en) * | 2012-12-30 | 2013-04-24 | 乐视网信息技术(北京)股份有限公司 | System and method of modularized software updating |
CN107959580A (en) * | 2016-10-17 | 2018-04-24 | 中兴通讯股份有限公司 | The method and apparatus of configuration service |
CN107918516A (en) * | 2017-10-17 | 2018-04-17 | 广东广业开元科技有限公司 | A kind of system and method for Visual Dynamic configuration generation chart |
CN109766503A (en) * | 2018-12-28 | 2019-05-17 | 深圳联友科技有限公司 | A kind of modular front end frame construction method and device |
CN110580183A (en) * | 2019-09-02 | 2019-12-17 | 江苏艾佳家居用品有限公司 | Mobile application modularization implementation method |
CN111309291A (en) * | 2020-01-19 | 2020-06-19 | 北京航空航天大学 | Modularized embedded software architecture, customization method and customization system thereof |
Non-Patent Citations (2)
Title |
---|
住房和城乡建设部信息中心: "《城市数字化关键技术研究与示范》", 北京:中国城市出版社, pages: 117 - 121 * |
蚂蚁金服科技: "支付宝移动端动态化方案实践", 《HTTPS://WWW.CNBLOGS.COM/ANT-TECHFIN/P/9971297.HTML》, 16 November 2018 (2018-11-16), pages 1 - 12 * |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113256428A (en) * | 2021-04-07 | 2021-08-13 | 深圳市怡化时代科技有限公司 | Method, device, equipment and storage medium for realizing financial terminal business function |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN111090423B (en) | Webhook framework system and method for realizing active calling and event triggering | |
CN106339237B (en) | For the plug-in unit loading frame and method of the field JavaEE WEB application | |
US10481921B2 (en) | Cloud platform, application running method, and access network unit | |
CN112445868B (en) | Service message processing method and device | |
CN112463211A (en) | System architecture transformation method compatible with multiple development architectures and system architecture | |
CN102591724A (en) | Method and device for information interaction | |
CN111367690A (en) | Method and device for supporting combined API service calling | |
US7809368B2 (en) | Architecture for location independent, automated integration testing and quality assurance of next generation IMS services | |
CN111414154A (en) | Method and device for front-end development, electronic equipment and storage medium | |
CN111949260A (en) | Mobile terminal service configuration method and system | |
CN110750780A (en) | User role permission fusion method, device and equipment based on multi-service system | |
CN112214250A (en) | Application program assembly loading method and device | |
CN109783132B (en) | Method and device for realizing system singleization and distribution | |
CN111538530A (en) | Page jump method and system, storage medium and electronic equipment | |
CN105260179A (en) | Method for achieving flex and servlet interaction | |
CN112671877B (en) | Data processing method and device | |
CN113934552A (en) | Method and device for determining function code, storage medium and electronic device | |
CN113722022A (en) | State management system and method | |
CN113626001A (en) | API dynamic editing method and device based on script | |
CN109669679B (en) | Service detection and processing method and device and electronic equipment | |
CN113326199B (en) | Debugging method and debugging platform device for application program of mobile operating system | |
CN115474071B (en) | Content display method, device, equipment and storage medium | |
CN111131471B (en) | Operation method and device of service system and electronic equipment | |
CN113342633B (en) | Performance test method and device | |
CN116166224A (en) | Method and system for developing mixed App based on Cordova |
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: 20201117 |
|
RJ01 | Rejection of invention patent application after publication |