CN111090452B - Service environment switching method and computer readable storage medium - Google Patents

Service environment switching method and computer readable storage medium Download PDF

Info

Publication number
CN111090452B
CN111090452B CN201911094288.2A CN201911094288A CN111090452B CN 111090452 B CN111090452 B CN 111090452B CN 201911094288 A CN201911094288 A CN 201911094288A CN 111090452 B CN111090452 B CN 111090452B
Authority
CN
China
Prior art keywords
identifier
stage
current
client software
server
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
CN201911094288.2A
Other languages
Chinese (zh)
Other versions
CN111090452A (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.)
Fujian Tianquan Educational Technology Ltd
Original Assignee
Fujian Tianquan Educational Technology 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 Fujian Tianquan Educational Technology Ltd filed Critical Fujian Tianquan Educational Technology Ltd
Priority to CN201911094288.2A priority Critical patent/CN111090452B/en
Publication of CN111090452A publication Critical patent/CN111090452A/en
Application granted granted Critical
Publication of CN111090452B publication Critical patent/CN111090452B/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/70Software maintenance or management
    • G06F8/71Version control; Configuration management

Landscapes

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

Abstract

The invention discloses a service environment switching method and a computer readable storage medium, wherein the method comprises the following steps: configuring stage identifiers of different version numbers and different running information corresponding to client software on a server; the client software respectively acquires server addresses corresponding to all the accessed services in all the stages, and associates the service identification, the stage identification and the corresponding server addresses; the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information to obtain the current stage identifier; and respectively acquiring server addresses corresponding to the services according to the service identifiers and the current stage identifiers of the services in the client software. The invention can conveniently switch the service environment of the client.

Description

Service environment switching method and computer readable storage medium
Technical Field
The present invention relates to the field of software development technologies, and in particular, to a service environment switching method and a computer readable storage medium.
Background
The process of developing the common C/S software at least comprises one or more stages of development, testing, pre-production, production and release.
In different development stages, the corresponding server environment is normally corresponding to the development stage. Generally, after entering each development stage, the client is required to modify the service environment of each service to a corresponding server address. The corresponding configuration file can be found for modification to the PC software, and the modification is effective immediately after restarting. However, for the mobile terminal app, after modifying the configuration file/code, the process of compiling, packaging and reinstalling is often required, and the process is tedious and time-consuming. In addition, in the process of recompilation and packaging, the latest version of the dependency library is possibly introduced, and the latest version does not pass the integration test of the previous stage, so that problems are easily introduced. In addition, under normal conditions, the server release always arrives at the user side before the client, and the new version server needs to be compatible with the old version client.
Disclosure of Invention
The technical problems to be solved by the invention are as follows: a service environment switching method and a computer-readable storage medium are provided, which can conveniently switch service environments of a client.
In order to solve the technical problems, the invention adopts the following technical scheme: a service environment switching method comprises the following steps:
configuring stage identifiers of different version numbers and different running information corresponding to client software on a server;
the client software respectively acquires server addresses corresponding to all the accessed services in all the stages, and associates the service identification, the stage identification and the corresponding server addresses;
the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information to obtain the current stage identifier;
and respectively acquiring server addresses corresponding to the services according to the service identifiers and the current stage identifiers of the services in the client software.
The invention also proposes a computer-readable storage medium, on which a computer program is stored, which program, when being executed by a processor, carries out the steps as described above.
The invention has the beneficial effects that: the client software obtains the corresponding stage identification under the current condition from the server, obtains the corresponding server address of each service at the current stage according to the locally stored configuration file, and initiates a data request to the service environment at the current stage through the server address; when the phase identifier on the server is changed, the client software reacquires the phase identifier, and the server address corresponding to each service acquired after restarting is correspondingly changed, so that a data request can be initiated to the service environment of the phase corresponding to the modified phase identifier, and the switching of the service environment of the client software is realized. The invention conveniently switches the service environment of the client software through configuration, does not need to reconstruct and install the client software, and does not worry about the tested client software, because the reconstruction introduces a new version library with potential problems.
Drawings
FIG. 1 is a flow chart of a method for switching service environments according to the present invention;
FIG. 2 is a flow chart of a method according to a first embodiment of the invention;
fig. 3 is a schematic diagram of a storage structure of a phase identifier corresponding to client software according to the first embodiment of the present invention;
fig. 4 is a configuration file content corresponding to a client a according to a first embodiment of the present invention;
fig. 5 is a configuration file content corresponding to the client B according to the first embodiment of the present invention.
Detailed Description
In order to describe the technical contents, the achieved objects and effects of the present invention in detail, the following description will be made with reference to the embodiments in conjunction with the accompanying drawings.
The most critical concept of the invention is as follows: configuring a stage identifier on a server, locally storing a configuration file, acquiring the stage identifier from the server by client software, storing the stage identifier locally, and acquiring a server address corresponding to a service from the configuration file according to the service identifier and the stage identifier acquired from the server, so as to initiate a data request to a service environment of a current stage; after the phase identifier configured on the server is modified, the client software acquires the modified phase identifier by receiving the instruction and stores the modified phase identifier in the local storage, reads the stored phase identifier after restarting, acquires the server address corresponding to the service in the configuration file according to the service identifier and the phase identifier acquired from the server, and can initiate a data request to the service environment of the new phase, thereby realizing the switching of the service environment.
Referring to fig. 1, a service environment switching method includes:
configuring stage identifiers of different version numbers and different running information corresponding to client software on a server;
the client software respectively acquires server addresses corresponding to all the accessed services in all the stages, and associates the service identification, the stage identification and the corresponding server addresses;
the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information to obtain the current stage identifier;
and respectively acquiring server addresses corresponding to the services according to the service identifiers and the current stage identifiers of the services in the client software.
From the above description, the beneficial effects of the invention are as follows: the service environment of the client can be switched conveniently.
Further, before configuring the stage identifier of each client software corresponding to different version numbers and different running information on the server, the method further includes:
the method comprises the steps of presetting a stage identifier of each stage of a software development flow.
The above description shows that the stage identifiers of the stages are preset to unify the identifiers of the server and the client to the stages.
Further, the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information, and the current stage identifier is obtained specifically as follows:
the client software judges whether the current stage identifier is stored locally or not;
if not, the client software acquires the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information, obtains the current stage identifier and stores the current stage identifier to the local.
From the above description, it can be seen that by storing the phase identifier locally, the corresponding phase identifier can be directly obtained from the local later, and the request from the server is not required each time, so that the time and the flow can be saved.
Further, the method further comprises the following steps:
when a preset trigger instruction is received, the client software acquires the corresponding stage identifier again from the server according to the self identifier, the current version number and the current running information, and updates the locally stored current stage identifier according to the re-acquired stage identifier.
As can be seen from the above description, when the phase identifier on the server is modified, the client software needs to be triggered to acquire a new phase identifier from the server again, and perform local update, so that the server address corresponding to the new phase identifier of each service can be acquired later, thereby realizing the switching of service environments.
Further, after obtaining the server address corresponding to each service according to the service identifier and the current stage identifier of each service in the client software, the method further includes:
generating interface addresses corresponding to the services according to the server addresses corresponding to the services and the service paths corresponding to the services respectively;
and initiating a data request according to the interface address.
From the above description, it can be seen that the interface URL is spliced to initiate a data request to the service environment of the current stage.
The invention also proposes a computer-readable storage medium, on which a computer program is stored, which program, when being executed by a processor, carries out the steps as described above.
Example 1
Referring to fig. 2-5, a first embodiment of the present invention is as follows: the service environment switching method can be applied to service environment switching of all client programs, ensures consistency of test programs and release programs, and can also be used for gray level test of different versions, different users and specific equipment according to a service end strategy so as to discover potential problems in advance. As shown in fig. 2, the method comprises the steps of:
s1: presetting a stage identifier of each stage of a software development process; the software development flow generally includes a development stage, a test stage, a pre-production stage, and a production line stage, and in this embodiment, the stage identifier may be a character string to identify each stage, for example, dev corresponds to the development stage, test corresponds to the test stage, beta corresponds to the pre-production stage, and release corresponds to the production line stage.
S2: and configuring phase identifiers of the client software corresponding to different version numbers and different running information on the server. Further, a first association relationship can be obtained according to the package ID, version number, operation information and stage identification of the client software, wherein the operation information comprises the equipment ID of the equipment where the client software is located and the logged-in user ID; a client software only corresponds to a stage identifier under a version number and running information; the phase identifier may be configured and modified by a configurator through the background, for example, initially configured as dev, and subsequently modifiable as test, beta, or release.
In practical application, the stage identifiers of the clients with different versions can be configured by adding the service environment management Server, and configuration personnel configure the stage identifiers corresponding to the client software with different versions to the service environment management Server through the background. The flexible configuration of multiple dimensions can be supported according to policies, not limited to package ID (package ID is used to identify a client software, e.g. package name of iOS APP), version number.
Specifically, whether the client software is newly developed client software is judged firstly, whether the package ID exists or not can be judged by searching, if the package ID exists for the newly developed client software, a corresponding client item is created on a service environment management Server according to the package ID of the client software; if the client software is the existing client software, the corresponding client item is directly found according to the package ID. Then creating a version entry corresponding to the current version number under the client entry, and then setting the stage identification under various running information. The resulting storage structure can be shown in fig. 3, and as can be seen from fig. 3, for the client software a (package ID is com.nd.app.a), the phase corresponding to the 001 version is identified as release, i.e. the production online phase; the phase corresponding to 002 version is identified as test, i.e., the test phase. For client software B (package ID com.nd.app.b), the phase corresponding to version 001 is identified as beta, the phase corresponding to version 001 and logged in user ID A is identified as dev, and the phase corresponding to version 001 and logged in user ID B is identified as release.
S3: the client software respectively acquires server addresses corresponding to all the accessed services at all the stages, and associates the service identification, the stage identification and the corresponding server addresses to obtain a second association relation. The second association may be stored locally as a configuration file.
Specifically, when the client software is built, according to the service environment of each service built in the accessed service, for example, the client a provides two services of microblog and news, and then the content of the configuration file corresponding to the client a can be shown in fig. 4; client B provides only news services, then the content of the configuration file corresponding to client B may be as shown in fig. 5.
The execution sequence of step S2 and step S3 may be not sequential.
S4: and the client software acquires the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information to obtain the current stage identifier.
Further, the client software firstly judges whether the current stage identifier is stored locally or not, if yes, the current stage identifier is directly obtained, if not, the corresponding stage identifier is requested from the server according to the self identifier, the current version number and the current running information, if the network is not connected or the content returned by the server is illegal or wrong, the request fails, the error processing is carried out, if the server returns the legal stage identifier, the request is successful, the client software obtains the current stage identifier and stores the current stage identifier to the local.
Further, when the client software receives a preset trigger instruction, the client software requests a corresponding stage identifier from the server according to the identifier, the current version number and the current running information, and updates the locally stored current stage identifier according to the re-acquired stage identifier.
During normal operation, based on the test purpose, the configurator modifies the phase identifier configured in the step S2, that is, modifies the phase identifier corresponding to the specific running information of the specific version number, if the client software wants to re-request the phase identifier, the request can be initiated through a preset trigger instruction, for example, when detecting that the operation of continuously clicking the preset position for preset times (for example, clicking the version number on the setting page for 10 times), the request is initiated, and the locally stored phase identifier is updated, and the updated phase identifier takes effect after the client software is restarted, so that the consistency of the current running service environment is ensured, and the confusion of the requests of each environment is avoided.
S5: the client software obtains the server address corresponding to each service according to the service identifier and the current stage identifier of each service accessed by the client software; after the current stage identifier is obtained, the server address corresponding to the service at the stage can be obtained from the second association relation according to the service identifier of the service.
S6: and generating an interface address corresponding to each service according to the server address corresponding to each service and the service path corresponding to each service, and initiating a data request according to the interface address. When a service initiates a request, a specific API request URL may be obtained by splicing according to a corresponding server address and a service path, for example, the server address corresponding to the microblog in the development stage is http:// weibo.dev.com, the corresponding service path is API/board/detailing=104800, and the interface address is http:// weibo.com/board/detailing=104800. After the interface address is obtained, a data request can be initiated to a specific server, namely, the data request is initiated to the service environment of the current stage.
In this embodiment, the client software obtains the corresponding server address of each service at the current stage by obtaining the corresponding stage identifier under the current condition from the server, and according to the locally stored configuration file, and initiates a data request to the service environment at the current stage through the server address; when the phase identifier on the server is changed, the client software re-acquires the phase identifier and updates the stored phase identifier, and the server address corresponding to each service acquired after restarting is correspondingly changed, so that a data request can be initiated to the service environment of the phase corresponding to the modified phase identifier, and the switching of the service environment of the client software is realized. The invention conveniently switches the service environment of the client software through configuration, does not need to reconstruct and install the client software, and does not worry about the tested client software, because the reconstruction introduces a new version library with potential problems.
Example two
The present embodiment is two specific application scenarios of the first embodiment.
Scene one: testing the compatibility of new version service end and old version client end in advance
1. The new version server side is released to a pre-production environment;
2. the configurator marks the stage of configuring the account number of the tester on the old version client software as a pre-production stage in the background;
3. logging in old version client software by using a tester account number, and clicking a version number in a setting page for 10 times to trigger a request stage identifier;
4. the server returns a stage identifier as a pre-production stage, and the client updates the stored stage identifier;
5. restarting the client, and acquiring a stage identifier as a pre-production stage, wherein a subsequent service accesses a service environment of the pre-production stage;
6. the tester performs compatibility testing.
The scene modifies the stage identification of the specific version of some users or some devices through the strategy, so that the service environment of the old version client of some users or some devices can be conveniently switched to be pre-produced for testing, the scene after the new version server is released is simulated, the problem is identified by testing in advance, and the probability of online faults is reduced.
Scene II: the client terminal current version V pre-production stage has completed the integration test, and the referenced library X issues a new version with bug
1. The server and the client have completed integrated test in the pre-production stage, and are ready to be released to the production environment for online;
2. firstly, a server side publishes the data to a production environment;
3. the stage of the configurator configuring the client version V in the background is identified as the production stage, and the library X contained in the published client uses a package other than a bug because of no reconstruction and packaging. The production environment of the client version V is tested, only the basic function is needed to be passed again, and no bug of the library X exists.
The above scenario can reduce the problem repair cost before release without introducing potential bug.
Example III
The present embodiment is a computer-readable storage medium corresponding to the above embodiment, having stored thereon a computer program which, when executed by a processor, realizes the steps of:
configuring stage identifiers of different version numbers and different running information corresponding to client software on a server;
the client software respectively acquires server addresses corresponding to all the accessed services in all the stages, and associates the service identification, the stage identification and the corresponding server addresses;
the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information to obtain the current stage identifier;
and respectively acquiring server addresses corresponding to the services according to the service identifiers and the current stage identifiers of the services in the client software.
Further, before configuring the stage identifier of each client software corresponding to different version numbers and different running information on the server, the method further includes:
the method comprises the steps of presetting a stage identifier of each stage of a software development flow.
Further, the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information, and the current stage identifier is obtained specifically as follows:
the client software judges whether the current stage identifier is stored locally or not;
if not, the client software acquires the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information, obtains the current stage identifier and stores the current stage identifier to the local.
Further, the method further comprises the following steps:
when a preset trigger instruction is received, the client software acquires the corresponding stage identifier again from the server according to the self identifier, the current version number and the current running information, and updates the locally stored current stage identifier according to the re-acquired stage identifier.
Further, after obtaining the server address corresponding to each service according to the service identifier and the current stage identifier of each service in the client software, the method further includes:
generating interface addresses corresponding to the services according to the server addresses corresponding to the services and the service paths corresponding to the services respectively;
and initiating a data request according to the interface address.
In summary, the service environment switching method and the computer readable storage medium provided by the invention can switch the service environment of the client software conveniently through configuration, and the client software does not need to be reconstructed and installed, and the tested client software does not need to be worried about because the new version library with potential problems is reconstructed and introduced.
The foregoing description is only illustrative of the present invention and is not intended to limit the scope of the invention, and all equivalent changes made by the specification and drawings of the present invention, or direct or indirect application in the relevant art, are included in the scope of the present invention.

Claims (6)

1. A method for switching a service environment, comprising:
configuring stage identifiers of different version numbers and different running information corresponding to client software on a server;
the client software respectively acquires server addresses corresponding to all the accessed services in all the stages, and associates the service identification, the stage identification and the corresponding server addresses;
the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information to obtain the current stage identifier;
respectively obtaining server addresses corresponding to the services according to the service identifiers and the current stage identifiers of the services in the client software;
the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information, and the current stage identifier is obtained specifically as follows:
the client software judges whether the current stage identifier is stored locally or not;
if not, the client software acquires the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information, acquires the current stage identifier and stores the current stage identifier to the local;
further comprises:
when a preset trigger instruction is received, the client software acquires the corresponding stage identifier again from the server according to the self identifier, the current version number and the current running information, and updates the locally stored current stage identifier according to the re-acquired stage identifier.
2. The method for switching a service environment according to claim 1, wherein before configuring the stage identifier of each client software corresponding to different version numbers and different running information on the server, the method further comprises:
the method comprises the steps of presetting a stage identifier of each stage of a software development flow.
3. The method for switching service environments according to claim 1, wherein after obtaining the server address corresponding to each service according to the service identifier and the current stage identifier of each service in the client software, the method further comprises:
generating interface addresses corresponding to the services according to the server addresses corresponding to the services and the service paths corresponding to the services respectively;
and initiating a data request according to the interface address.
4. A computer readable storage medium having stored thereon a computer program, characterized in that the program when executed by a processor performs the steps of:
configuring stage identifiers of different version numbers and different running information corresponding to client software on a server;
the client software respectively acquires server addresses corresponding to all the accessed services in all the stages, and associates the service identification, the stage identification and the corresponding server addresses;
the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information to obtain the current stage identifier;
respectively obtaining server addresses corresponding to the services according to the service identifiers and the current stage identifiers of the services in the client software;
the client software obtains the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information, and the current stage identifier is obtained specifically as follows:
the client software judges whether the current stage identifier is stored locally or not;
if not, the client software acquires the corresponding stage identifier from the server according to the self identifier, the current version number and the current running information, acquires the current stage identifier and stores the current stage identifier to the local;
further comprises:
when a preset trigger instruction is received, the client software acquires the corresponding stage identifier again from the server according to the self identifier, the current version number and the current running information, and updates the locally stored current stage identifier according to the re-acquired stage identifier.
5. The computer-readable storage medium of claim 4, wherein before configuring the phase identifier of each client software corresponding to a different version number and different running information on the server, further comprising:
the method comprises the steps of presetting a stage identifier of each stage of a software development flow.
6. The computer readable storage medium of claim 4, wherein after obtaining the server address corresponding to each service according to the service identifier and the current stage identifier of each service in the client software, the method further comprises:
generating interface addresses corresponding to the services according to the server addresses corresponding to the services and the service paths corresponding to the services respectively;
and initiating a data request according to the interface address.
CN201911094288.2A 2019-11-11 2019-11-11 Service environment switching method and computer readable storage medium Active CN111090452B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911094288.2A CN111090452B (en) 2019-11-11 2019-11-11 Service environment switching method and computer readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911094288.2A CN111090452B (en) 2019-11-11 2019-11-11 Service environment switching method and computer readable storage medium

Publications (2)

Publication Number Publication Date
CN111090452A CN111090452A (en) 2020-05-01
CN111090452B true CN111090452B (en) 2023-04-28

Family

ID=70394076

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911094288.2A Active CN111090452B (en) 2019-11-11 2019-11-11 Service environment switching method and computer readable storage medium

Country Status (1)

Country Link
CN (1) CN111090452B (en)

Families Citing this family (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113765960B (en) * 2020-07-01 2023-12-05 北京京东尚科信息技术有限公司 Operation and maintenance tangential flow method, system and computer readable medium
CN112751750B (en) * 2020-12-16 2023-04-07 华人运通(上海)云计算科技有限公司 Gateway address configuration system and method
CN112597245B (en) * 2020-12-24 2023-11-10 北京百度网讯科技有限公司 Data synchronization method, device and storage medium
CN112737942B (en) * 2020-12-24 2022-06-03 土巴兔集团股份有限公司 Service route switching method, device, equipment and medium
CN112860576A (en) * 2021-03-16 2021-05-28 中国工商银行股份有限公司 Business processing method, device and equipment based on gray level verification
CN113127053A (en) * 2021-04-29 2021-07-16 平安国际智慧城市科技股份有限公司 Application environment parameter configuration method and device, computer equipment and storage medium
CN113377381B (en) * 2021-06-30 2023-11-14 北京百度网讯科技有限公司 Distribution method and device of small program package, electronic equipment and medium
CN114500379A (en) * 2022-02-18 2022-05-13 吉旗(成都)科技有限公司 Message transmission method, device, equipment and storage medium

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106648562B (en) * 2015-10-29 2020-04-21 腾讯科技(深圳)有限公司 Version updating method and device
CN107688464A (en) * 2017-06-28 2018-02-13 上海壹账通金融科技有限公司 Software customized server, method and computer-readable recording medium
CN108632374B (en) * 2018-05-09 2021-06-18 恒大智慧科技有限公司 Software gray level release method and device
CN109814910A (en) * 2018-12-14 2019-05-28 深圳壹账通智能科技有限公司 Automate gray scale dissemination method, device, computer system and storage medium
CN110046094B (en) * 2019-03-15 2021-01-15 北京创鑫旅程网络技术有限公司 Operating environment switching method and operating environment switching device

Also Published As

Publication number Publication date
CN111090452A (en) 2020-05-01

Similar Documents

Publication Publication Date Title
CN111090452B (en) Service environment switching method and computer readable storage medium
US8667480B1 (en) Automatically updating browser extensions, and applications thereof
CN104063239B (en) Application program update method and server, the client of mobile terminal
CN105657191B (en) Application increment upgrading method and system based on Android system
US20120246630A1 (en) System and Method for Automating Installation and Updating of Third Party Software
CN106406961A (en) Method and device for loading and providing application based on browser
US20090276770A1 (en) Systems, methods and computer program products for automating packaging and provisioning of j2ee web modules to eclipse-based rich clients
CN112130871B (en) Method and device for remotely deploying middleware, computer equipment and storage medium
CN112749095B (en) Method, system and medium for switching operating system to execute test task
CN113302901B (en) Method and system for cloud application and service integration using pattern-based discovery
WO2019056187A1 (en) Application deployment method, apparatus and system
US10353729B1 (en) Managing service dependencies across virtual machines in a development environment
US9411618B2 (en) Metadata-based class loading using a content repository
US20090094312A1 (en) Methods and systems for dynamic code extension
CN113722204A (en) Application debugging method, system, device and medium
CN112491940B (en) Request forwarding method and device of proxy server, storage medium and electronic equipment
US20080258865A1 (en) Binary verification service
CN115129348A (en) Resource updating method, device and equipment of application program and readable storage medium
CN116069366A (en) Client application program updating method and device, storage medium and electronic equipment
CN115729590A (en) Service deployment method, device, equipment and computer readable storage medium
CN112486509A (en) Jar package assembly heat deployment method and system
CN110874226B (en) Android system function upgrading method
CN111240589A (en) Partition isolation-based system management method, device, equipment and storage medium
CN114676034B (en) Test method and device and computer equipment
CN117992148A (en) Application starting method and device for embedded H5 module

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