WO2021114902A1 - Procédé et dispositif d'initialisation de programme, dispositif terminal et support de stockage - Google Patents

Procédé et dispositif d'initialisation de programme, dispositif terminal et support de stockage Download PDF

Info

Publication number
WO2021114902A1
WO2021114902A1 PCT/CN2020/123756 CN2020123756W WO2021114902A1 WO 2021114902 A1 WO2021114902 A1 WO 2021114902A1 CN 2020123756 W CN2020123756 W CN 2020123756W WO 2021114902 A1 WO2021114902 A1 WO 2021114902A1
Authority
WO
WIPO (PCT)
Prior art keywords
parameter
target
value
program
target parameter
Prior art date
Application number
PCT/CN2020/123756
Other languages
English (en)
Chinese (zh)
Inventor
赖云辉
Original Assignee
平安科技(深圳)有限公司
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 平安科技(深圳)有限公司 filed Critical 平安科技(深圳)有限公司
Publication of WO2021114902A1 publication Critical patent/WO2021114902A1/fr

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/65Updates
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/71Version control; Configuration management
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements 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/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating
    • G06F9/44505Configuring for program initiating, e.g. using registry, configuration files

Definitions

  • This application relates to the field of R&D management technology, and in particular to a program initialization method, program initialization device, terminal equipment, and computer storage medium.
  • Program initialization refers to the process of assigning initial values to initialization parameters (such as data objects or variables, etc.) in the program before the program runs.
  • initial parameter value is usually written directly into the corresponding parameter position in the program.
  • One of the objectives of the embodiments of the present application is to provide a program initialization method, program initialization device, terminal equipment, and computer storage medium, which can effectively implement flexible configuration of program initialization parameters.
  • an embodiment of the present application provides a program initialization method, including:
  • the first target parameter is an initialization parameter with a preset identifier
  • the target program is initialized according to the parameter value of the second target parameter.
  • an embodiment of the present application provides a program initialization device, including:
  • An acquiring unit configured to acquire a first target parameter in the target program, where the first target parameter is an initialization parameter with a preset identifier;
  • the searching unit is configured to search for the second target parameter corresponding to the first target parameter from the configuration table of the preset database
  • the initialization unit is configured to initialize the target program according to the parameter value of the first target parameter and the parameter value of the second target parameter.
  • an embodiment of the present application provides a terminal device, including a memory, a processor, and a computer program stored in the memory and running on the processor.
  • a terminal device including a memory, a processor, and a computer program stored in the memory and running on the processor.
  • the processor executes the computer program, To achieve the following steps:
  • the first target parameter is an initialization parameter with a preset identifier
  • the target program is initialized according to the parameter value of the second target parameter.
  • an embodiment of the present application provides a computer-readable storage medium
  • an embodiment of the present application provides a computer-readable storage medium
  • the computer-readable storage medium stores a computer program
  • the computer program is processed The following steps are implemented when the device is executed:
  • the first target parameter is an initialization parameter with a preset identifier
  • the target program is initialized according to the parameter value of the second target parameter.
  • the embodiment of the application obtains the first target parameter in the target program, that is, the initialization parameter with the preset identifier, and then searches the configuration table of the preset database for the second target parameter corresponding to the first target parameter, and finally according to the second target
  • the parameter value of the parameter initializes the target program. Since the parameter value of the second target parameter in the preset database can be flexibly modified, therefore, in the process of initializing the target program according to the parameter value of the second target parameter, the parameter of the second target parameter in the preset database can be modified. Value to flexibly configure the initialization parameters. Through the above method, the flexible configuration of program initialization parameters is effectively realized.
  • FIG. 1 is a schematic diagram of a program initialization system provided by an embodiment of the present application
  • FIG. 2 is a schematic flowchart of a parameter configuration method provided by an embodiment of the present application.
  • FIG. 3 is a schematic flowchart of a program initialization method provided by an embodiment of the present application.
  • Fig. 4 is a structural block diagram of a program initialization device provided by an embodiment of the present application.
  • FIG. 5 is a schematic structural diagram of a terminal device provided by an embodiment of the present application.
  • the term “if” can be construed as “when” or “once” or “in response to determination” or “in response to detecting ".
  • the program initialization system includes a processor 101 and a storage medium 102 storing a preset database.
  • the processor 101 is used to initialize and run the target program.
  • the storage medium 102 is a device or device including a storage space, such as a U disk, a mobile hard disk random access memory or a read-only memory, etc., and the preset database is stored in the storage space of the storage medium.
  • the processor and the storage medium 102 are communicatively connected, so that the processor can obtain the information in the preset database from the storage medium.
  • the preset database can also be stored in the internal storage space of the processor.
  • the interactive process of the program initialization method includes:
  • the processor obtains the preset identifier input by the user, and adds the preset identifier to the initialization parameters that need to be configured in the target program to obtain the first target parameter; then the first target parameter is added to the configuration of the preset database Table.
  • the user modifies the parameter value of the second target parameter in the configuration table of the preset database, and sends a parameter modification instruction to the processor after modification; the processor obtains the parameter modification after receiving the parameter modification instruction
  • the parameter information in the instruction (the parameter information includes the parameter name and the parameter modification value), the third target parameter corresponding to the parameter name is searched in the configuration table of the preset database, and the parameter value of the third target parameter is replaced with the parameter Modify the value.
  • the user sends an initialization instruction to the processor; after the processor receives the initialization instruction, it obtains the first target parameter in the target program (the first target parameter is the initialization parameter with a preset identifier), and the The second target parameter corresponding to the first target parameter is searched in the configuration table of the database; then the target program is initialized according to the parameter value of the second target parameter.
  • the processor receives the initialization instruction, it obtains the first target parameter in the target program (the first target parameter is the initialization parameter with a preset identifier), and the The second target parameter corresponding to the first target parameter is searched in the configuration table of the database; then the target program is initialized according to the parameter value of the second target parameter.
  • the user can modify the parameters in the preset database, and then initialize the target program according to the modified parameters in the preset database to achieve program initialization Flexible configuration of parameters.
  • the process of parameter configuration is usually carried out in the program development stage. After the program development is completed, before running the program, the program initialization process is carried out.
  • the process of parameter configuration and the process of program initialization may be executed by different processors, or may be executed by the same processor successively.
  • the process of parameter configuration is first introduced below.
  • FIG. 2 is a schematic flowchart of a parameter configuration method provided by an embodiment of the present application.
  • the method may include the following steps:
  • S201 Obtain initialization parameters in the target program, and obtain parameters to be configured in the initialization parameters.
  • the target program is the development object, that is, the application program in the development process.
  • a set of applications may serve different users.
  • the administrative platform is an application system for administrative management, which can be used to manage the administrative affairs of different companies, that is, serve different company users.
  • the general program framework is fixed, but some configurable parameters may be set. In this way, by modifying the parameters, the application can be adapted to different users.
  • Initialization parameters refer to parameters that need to be assigned initial values during program initialization, such as data objects or variables in the program.
  • "name” is a public static variable
  • "PA002” is the initial value to be assigned to "name"
  • the variable "name” is assigned the initial value "PA002”.
  • "name" is an initialization parameter.
  • the parameter value of this type of parameter is usually fixed.
  • the initial value assigned to the program framework parameter is a fixed value (ie Each time it is initialized, the initial value is the same); some parameters are used to initialize for different users.
  • the parameter value of this type of parameter can usually be changed and can be configured.
  • the initial value assigned to this type of parameter is not a fixed value (that is, the initial value may be different from before each time it is initialized).
  • the parameter to be configured in the initialization parameter refers to a parameter that is configurable in the initialization parameter.
  • the preset logo can be preset according to actual needs, and is usually defined during the program development process.
  • the preset identifier is equivalent to a mark, which can be used to distinguish which parameters are to be configured and which parameters are not to be configured (that is, non-to-be-configured parameters).
  • the preset identifier can be a pre-defined symbol added before or after the name of the parameter to be configured. Exemplarily, assuming that the preset identifier is "#", then after adding the preset identifier to the parameter "name" to be configured, the marked parameter is "#name”.
  • the preset identification can also be embodied by changing the format of the name of the parameter to be configured. Exemplarily, it is assumed that the name of the parameter to be configured is in uppercase letters, and the name of the non-to-be-configured parameter is in lowercase letters. For example, in the two parameters "NAME" and "time”, "NAME" is a parameter to be configured, and "time” is a parameter not to be configured. It should be noted that the expression form of the preset identifier may also be in other situations, as long as it can be used to distinguish between parameters to be configured and parameters not to be configured, and the expression form is not specifically limited.
  • the preset logo In the process of adding the preset logo, you can only add the preset logo to the configuration parameter. For example: assuming that the parameter "name” is a parameter to be configured, the parameter “time” is a parameter that is not to be configured, and the preset identifier is "#”, then only the preset identifier is added for "name", that is, "#name” instead of the parameter to be configured. The configuration parameter is still "time”.
  • the preset identifier in the embodiment of this application refers to the identifier of the parameter to be configured.
  • a preset mark can be added to the parameter "name", such as adding @myconstantconfig to the parameter name, that is, the parameter to be configured after adding the preset mark As "name@myconstantconfig”. If a parameter is not a parameter to be configured, you can add @ignoreattr to this parameter, such as adding @ignoreattr to the non-to-be-configured parameter "time” to get "time@ignoreattr". In this way, it is possible to distinguish which parameters are to be configured and which parameters are not to be configured through different marks. It should be noted that the foregoing is only an example of the preset logo, and does not specifically limit the content or form of the preset logo.
  • the configuration table of the preset database is used to store the names of all the parameters to be configured in the target program and their respective parameter values. In other words, during the initialization of the target program, which parameters need to be assigned initial values, then these parameters and their respective initial values will be stored in the configuration table of the preset database. In essence, the parameters and parameter values in the configuration table of the preset database correspond one-to-one with the parameters and parameter values in the target program.
  • the preset identifier is added to each of the parameters to be configured to obtain the first target parameter, it is also possible to: combine the first target parameter and the first target parameter The parameter value is uploaded to the blockchain.
  • the parameter configuration solution may be executed by one processor, or may be executed by multiple processors.
  • multiple processors perform parameter configuration tasks together, it is easy to find task conflicts.
  • each processor participating in the parameter configuration task uploads the configured first target parameter and its parameter value to the blockchain, which can ensure its security, fairness and transparency.
  • Each processor involved in the execution of parameter tasks, or other user equipment that wishes to query parameters can download the first target parameter and its parameter value from the blockchain, so as to verify whether the parameter value of the first target parameter has been tampered with.
  • the blockchain referred to in this example is a new application mode of computer technology such as distributed data storage, point-to-point transmission, consensus mechanism, and encryption algorithm.
  • Blockchain essentially a decentralized database, is a series of data blocks associated with cryptographic methods. Each data block contains a batch of network transaction information for verification. The validity of the information (anti-counterfeiting) and the generation of the next block.
  • the blockchain can include the underlying platform of the blockchain, the platform product service layer, and the application service layer.
  • FIG. 3 is a schematic flowchart of the program initialization method provided by the embodiment of this application.
  • the method may include the following steps:
  • S301 Acquire a first target parameter in the target program, where the first target parameter is an initialization parameter with a preset identifier.
  • the initialization parameter with a preset identifier indicates that the parameter is a configurable parameter.
  • S302 Search for a second target parameter corresponding to the first target parameter from a configuration table of a preset database.
  • the first target parameter is stored in the target program
  • the second target parameter is stored in the configuration table of the preset database.
  • the parameters in the configuration table of the preset database have a one-to-one correspondence with the parameters in the target program, that is, the first target parameter and the second target parameter have a one-to-one correspondence.
  • the first target parameter and the second target parameter represent the same parameter.
  • the second target parameter corresponding to the first target parameter may mean that the name of the first target parameter is the same as the name of the second target parameter. For example, if the first target parameter is "name”, the parameter named "name" is searched in the configuration table of the preset database as the second target parameter.
  • the first target parameter and its corresponding second target parameter or the data format of the name may be different.
  • the first target The second target parameter corresponding to the parameter means that the first target parameter and the second target parameter represent the same variable.
  • the language of the target program is java and the database language is SQL
  • the first target parameter and the second target parameter both represent user numbers, but the name of the first target parameter is java language, and the name of the second target parameter is SQL language.
  • both the first target parameter and the second target parameter represent user numbers, but the parameter name of the first target parameter is "name", and the parameter name of the second target parameter is "ID".
  • S303 may specifically include the following steps:
  • S3031 Obtain the parameter value of the first target parameter, and compare the parameter value of the first target parameter with the parameter value of the second target parameter.
  • the parameter value of the first target parameter is stored in the target program, and the parameter value of the second target parameter is stored in the database.
  • the parameter value of the first target parameter is obtained, and the parameter value of the first target parameter is obtained from the target program.
  • the parameter value of the first target parameter is the same as the parameter value of the second target parameter, indicating that the parameter value of the first target parameter has not been modified, so the target program can still be initialized according to the original parameter value.
  • the parameter value of the first target parameter is different from the parameter value of the second target parameter, indicating that the parameter value of the first target parameter is modified, and then the target program needs to be initialized according to the modified parameter value.
  • the manner of using the parameter value of the second target parameter to update the parameter value of the first target parameter may include:
  • the parameter value of the second target parameter is generated into a bytecode file in a preset format, wherein the preset format is the same as the format of the parameter value of the first target parameter;
  • the code file is loaded to the position of the first target parameter in the target program.
  • CGLIB Code Generation Library
  • ASM A Small and fast bytecode processing framework
  • scripting languages such as Groovy and BeanShell also use ASM to generate java bytecodes, so they can also be used to generate bytecode files from the parameter values of the second target parameter.
  • the class loader is a part of the runtime environment and is responsible for dynamically loading the classes in the code into the memory space of the virtual machine.
  • the Java class loader is responsible for dynamically loading Java classes into the memory space of the Java virtual machine. After the bytecode file is loaded into the target program through the class loader, the target program can run the bytecode file.
  • the user can modify the parameters in the configuration table of the preset database at any time. Specifically, it can include the following steps:
  • the parameter information in the parameter modification instruction is acquired, where the parameter information includes the parameter name and the parameter modification value; and the parameter information is searched in the configuration table of the preset database.
  • the third target parameter corresponding to the name, and the parameter value of the third target parameter is replaced with the parameter modified value.
  • the user can modify the parameters in the preset database first, and then send a parameter modification instruction to the processor after the modification. It may also be that after the user modifies the parameters in the preset database, the server corresponding to the preset database feeds back the parameter modification instruction to the processor.
  • the update period can be preset, and the processor can detect whether the parameters in the configuration table of the preset database need to be updated according to the preset update period.
  • the specific detection process may be: the processor obtains the first target parameter in the target program, and obtains the second target parameter corresponding to each first target parameter in the configuration table of the preset database; and compares the parameter value of the first target parameter with The parameter value of the second target parameter is compared; if the parameter value of the first target parameter is different from the parameter value of the second target parameter, the parameter value of the second target parameter is used to compare the parameter value of the first target parameter Update (the update method can be described in S4033).
  • the embodiment of the application obtains the first target parameter in the target program, that is, the initialization parameter with a preset identifier, and then searches the configuration table of the preset database for the second target parameter corresponding to the first target parameter, and finally according to the second target
  • the parameter value of the parameter initializes the target program. Since the parameter value of the second target parameter in the preset database can be flexibly modified, in the process of initializing the target program according to the parameter value of the second target parameter, the parameter of the second target parameter in the preset database can be modified. Value to flexibly configure the initialization parameters. Through the above method, the flexible configuration of program initialization parameters is effectively realized.
  • FIG. 4 is a structural block diagram of a program initialization apparatus provided in an embodiment of the present application. For ease of description, only the parts related to the embodiment of the present application are shown.
  • the device 4 includes:
  • the acquiring unit 41 is configured to acquire a first target parameter in the target program, where the first target parameter is an initialization parameter with a preset identifier.
  • the searching unit 42 is configured to search for the second target parameter corresponding to the first target parameter from the configuration table of the preset database.
  • the initialization unit 43 is configured to initialize the target program according to the parameter value of the first target parameter and the parameter value of the second target parameter.
  • the device 4 further includes:
  • the scanning unit 44 is configured to obtain the initialization parameters in the target program and obtain the parameters to be configured in the initialization parameters before obtaining the initialization parameters with a preset identifier in the target program, wherein the parameters to be configured are It is a configurable parameter in the initialization parameters.
  • the identification unit 45 is configured to add the preset identification to each of the parameters to be configured to obtain the first target parameter
  • the adding unit 46 is configured to add the first target parameter to the configuration table of the preset database.
  • the device 4 further includes:
  • the monitoring unit is configured to obtain parameter information in the parameter modification instruction when the parameter modification instruction is monitored, where the parameter information includes the parameter name and the parameter modification value.
  • the replacement unit is configured to search for a third target parameter corresponding to the parameter name in the configuration table of the preset database, and replace the parameter value of the third target parameter with the parameter modification value.
  • the initialization unit 43 includes:
  • the comparison module is used to obtain the parameter value of the first target parameter, and compare the parameter value of the first target parameter with the parameter value of the second target parameter.
  • the first initialization module is configured to initialize the target program according to the parameter value of the first target parameter if the parameter value of the first target parameter is the same as the parameter value of the second target parameter.
  • the initialization unit 43 includes:
  • the comparison module is also used to obtain the parameter value of the first target parameter, and compare the parameter value of the first target parameter with the parameter value of the second target parameter.
  • the second initialization module is configured to use the parameter value of the second target parameter to compare the parameter value of the first target parameter if the parameter value of the first target parameter is different from the parameter value of the second target parameter. Update, and initialize the target program according to the updated parameter value of the first target parameter.
  • the second initialization module is also used to:
  • the bytecode file is loaded to the position of the first target parameter in the target program through a class loader.
  • the device 4 further includes:
  • the uploading unit is configured to upload the first target parameter and the parameter value of the first target parameter to each of the parameters to be configured by adding the preset identifier to obtain the first target parameter.
  • the blockchain In the blockchain.
  • program initialization device shown in FIG. 4 can be a software unit, a hardware unit, or a combination of software and hardware built into an existing terminal device, or it can be integrated into the terminal device as an independent pendant, or Exist as an independent terminal device.
  • Fig. 5 is a schematic structural diagram of a terminal device provided by an embodiment of the present application.
  • the terminal device 5 of this embodiment includes: at least one processor 50 (only one is shown in FIG.
  • the computer program 52 running on the processor 50 implements the steps in any of the foregoing program initialization method embodiments when the processor 50 executes the computer program 52.
  • the terminal device may be a computing device such as a desktop computer, a notebook, a palmtop computer, and a cloud server.
  • the terminal device may include, but is not limited to, a processor and a memory.
  • FIG. 5 is only an example of the terminal device 5, and does not constitute a limitation on the terminal device 5. It may include more or less components than those shown in the figure, or a combination of certain components, or different components. , For example, can also include input and output devices, network access devices, and so on.
  • the so-called processor 50 may be a central processing unit (Central Processing Unit, CPU).
  • the processor 50 may also be other general-purpose processors, digital signal processors (Digital Signal Processors, DSPs), and application-specific integrated circuits (Application Specific Integrated Circuits). Specific Integrated Circuit, ASIC), ready-made programmable gate array (Field-Programmable Gate Array, FPGA) or other programmable logic devices, discrete gates or transistor logic devices, discrete hardware components, etc.
  • the general-purpose processor may be a microprocessor or the processor may also be any conventional processor or the like.
  • the memory 51 may be an internal storage unit of the terminal device 5 in some embodiments, such as a hard disk or a memory of the terminal device 5. In other embodiments, the memory 51 may also be an external storage device of the terminal device 5, such as a plug-in hard disk equipped on the terminal device 5, a smart memory card (Smart Media Card, SMC), and a secure digital (Secure Digital, SD) card, flash memory card (Flash Card) and so on. Further, the memory 51 may also include both an internal storage unit of the terminal device 5 and an external storage device.
  • the memory 51 is used to store an operating system, an application program, a boot loader (Boot Loader), data, and other programs, such as the program code of the computer program. The memory 51 can also be used to temporarily store data that has been output or will be output.
  • the embodiments of the present application also provide a computer-readable storage medium, where the computer-readable storage medium stores a computer program, and when the computer program is executed by a processor, the steps in each of the foregoing method embodiments can be realized.
  • the computer-readable storage medium may be non-volatile or volatile.
  • the embodiments of the present application provide a computer program product.
  • the terminal device can realize the steps in the foregoing method embodiments when the terminal device is executed.
  • the integrated unit is implemented in the form of a software functional unit and sold or used as an independent product, it can be stored in a computer readable storage medium.
  • the computer program can be stored in a computer-readable storage medium.
  • the computer program can be stored in a computer-readable storage medium.
  • the steps of the foregoing method embodiments can be implemented.
  • the computer program includes computer program code, and the computer program code may be in the form of source code, object code, executable file, or some intermediate forms.
  • the computer-readable medium may at least include: any entity or device capable of carrying the computer program code to the device/terminal device, recording medium, computer memory, read-only memory (ROM, Read-Only Memory), random access memory (RAM, Random Access Memory), electrical carrier signals, telecommunications signals, and software distribution media.
  • ROM read-only memory
  • RAM random access memory
  • electrical carrier signals telecommunications signals
  • software distribution media For example, U disk, mobile hard disk, floppy disk or CD-ROM, etc.
  • computer-readable media cannot be electrical carrier signals and telecommunication signals.
  • the disclosed device/terminal device and method may be implemented in other ways.
  • the device/terminal device embodiments described above are only illustrative.
  • the division of the modules or units is only a logical function division, and there may be other divisions in actual implementation, such as multiple units.
  • components can be combined or integrated into another system, or some features can be omitted or not implemented.
  • the displayed or discussed mutual coupling or direct coupling or communication connection may be indirect coupling or communication connection through some interfaces, devices or units, and may be in electrical, mechanical or other forms.
  • the units described as separate components may or may not be physically separated, and the components displayed as units may or may not be physical units, that is, they may be located in one place, or they may be distributed on multiple network units. Some or all of the units may be selected according to actual needs to achieve the objectives of the solutions of the embodiments.

Landscapes

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

Abstract

L'invention concerne un procédé d'initialisation de programme, un dispositif d'initialisation de programme, un dispositif terminal et un support de stockage informatique, pouvant être mis en application dans le domaine technique du développement de logiciels, ledit procédé comprenant : l'acquisition d'un premier paramètre cible dans un programme cible, ce premier paramètre cible étant un paramètre d'initialisation portant un identifiant prédéfini (S301) ; la recherche, dans une table de configuration d'une base de données prédéfinie, d'un deuxième paramètre cible correspondant au premier paramètre cible (S302) ; et l'initialisation du programme cible sur la base de la valeur de paramètre du deuxième paramètre cible (S303). Le procédé met en oeuvre efficacement une configuration flexible de paramètres d'initialisation de programme.
PCT/CN2020/123756 2020-06-05 2020-10-26 Procédé et dispositif d'initialisation de programme, dispositif terminal et support de stockage WO2021114902A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN202010503277.1 2020-06-05
CN202010503277.1A CN111694586A (zh) 2020-06-05 2020-06-05 程序初始化方法、程序初始化装置、终端设备及存储介质

Publications (1)

Publication Number Publication Date
WO2021114902A1 true WO2021114902A1 (fr) 2021-06-17

Family

ID=72479438

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2020/123756 WO2021114902A1 (fr) 2020-06-05 2020-10-26 Procédé et dispositif d'initialisation de programme, dispositif terminal et support de stockage

Country Status (2)

Country Link
CN (1) CN111694586A (fr)
WO (1) WO2021114902A1 (fr)

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111694586A (zh) * 2020-06-05 2020-09-22 平安科技(深圳)有限公司 程序初始化方法、程序初始化装置、终端设备及存储介质
CN116701501B (zh) * 2022-11-21 2024-04-12 荣耀终端有限公司 相机标定数据的加载方法、装置及终端设备

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1290897A (zh) * 1999-06-30 2001-04-11 国际商业机器公司 可动态调节而且可配置的废料收集程序用的方法和系统
CN104022894A (zh) * 2014-05-12 2014-09-03 东软熙康健康科技有限公司 集中管理应用配置参数的方法、配置应用参数的方法
CN105630562A (zh) * 2016-01-07 2016-06-01 东莞钜威新能源有限公司 一种电池管理系统初始化的方法和装置
CN107508846A (zh) * 2016-06-14 2017-12-22 北京京东尚科信息技术有限公司 应用客户端的更新方法和系统及终端设备
CN111694586A (zh) * 2020-06-05 2020-09-22 平安科技(深圳)有限公司 程序初始化方法、程序初始化装置、终端设备及存储介质

Family Cites Families (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5913218A (en) * 1995-11-06 1999-06-15 Sun Microsystems, Inc System and method for retrieving and updating configuration parameter values for application programs in a computer network
CN103064919B (zh) * 2012-12-20 2017-02-15 北京思特奇信息技术股份有限公司 一种业务系统中配置参数的保存方法及装置
CN108268289B (zh) * 2016-12-30 2022-01-28 阿里巴巴集团控股有限公司 web应用的参数配置方法、装置及系统
CN110955455A (zh) * 2018-09-26 2020-04-03 Oppo(重庆)智能科技有限公司 终端初始化配置方法、装置、电子设备及存储介质
CN111124523A (zh) * 2018-10-15 2020-05-08 百度在线网络技术(北京)有限公司 用于初始化应用的方法和装置
CN111104133A (zh) * 2018-10-25 2020-05-05 深圳市茁壮网络股份有限公司 一种配置参数的更新系统、方法及存储介质
CN109766123B (zh) * 2018-12-24 2022-06-10 奇安信科技集团股份有限公司 应用程序封装方法及装置
CN110502272A (zh) * 2019-08-16 2019-11-26 济南浪潮数据技术有限公司 一种参数配置方法、装置、存储介质及计算机设备

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN1290897A (zh) * 1999-06-30 2001-04-11 国际商业机器公司 可动态调节而且可配置的废料收集程序用的方法和系统
CN104022894A (zh) * 2014-05-12 2014-09-03 东软熙康健康科技有限公司 集中管理应用配置参数的方法、配置应用参数的方法
CN105630562A (zh) * 2016-01-07 2016-06-01 东莞钜威新能源有限公司 一种电池管理系统初始化的方法和装置
CN107508846A (zh) * 2016-06-14 2017-12-22 北京京东尚科信息技术有限公司 应用客户端的更新方法和系统及终端设备
CN111694586A (zh) * 2020-06-05 2020-09-22 平安科技(深圳)有限公司 程序初始化方法、程序初始化装置、终端设备及存储介质

Also Published As

Publication number Publication date
CN111694586A (zh) 2020-09-22

Similar Documents

Publication Publication Date Title
US10310824B2 (en) Distributed ledger platform for computing applications
US7386609B2 (en) Method, system, and program for managing devices in a network
US7971182B1 (en) Application environment specifications for provisioning application specific runtime environments using undefined symbols
US9460306B1 (en) System and method for controlling access of machine code to operating system resources
US10929149B2 (en) Method and system for updating firmware
US8489547B2 (en) System and method for transforming configuration data items in a configuration management database
CN110825363B (zh) 智能合约获取方法、装置、电子设备及存储介质
CN111736922B (zh) 插件调用方法、装置、电子设备及存储介质
US10268628B2 (en) Method for extracting BIOS attributes for BIOS management and system therefor
AU2004200639A1 (en) Integrating design, deployment, and management phases for systems
US20190243912A1 (en) Rapid design, development, and reuse of blockchain environment and smart contracts
US10394756B2 (en) System and method for customizing archive of a device driver generator tool for a user
CN108595187A (zh) 安卓安装包集成软件开发工具包的法、装置及存储介质
WO2021114902A1 (fr) Procédé et dispositif d'initialisation de programme, dispositif terminal et support de stockage
US20060123016A1 (en) Metadata driven method and apparatus to configure heterogenous distributed systems
JP2021516379A (ja) ライセンス検証装置
EP3121750B1 (fr) Système et procédé de vérification d'antivirus d'images natives d'ensembles de logiciels
WO2002027486A1 (fr) Procedes et appareil pour produire des identifiants uniques pour composants logiciels
US20080301654A1 (en) Program processing apparatus, program processing method and computer readable information recording medium
CN113971019A (zh) 数据类型创建方法、装置、服务器及介质
TWI682296B (zh) 映像檔打包方法及映像檔打包系統
CN113420306A (zh) 资源共享方法、装置、计算设备及计算机可读存储介质
CA3099814C (fr) Plate-forme de registre distribue pour applications informatiques
CN112925523A (zh) 对象比较方法、装置、设备及计算机可读介质
CN111857883A (zh) 页面数据校验方法、装置、电子设备及存储介质

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 20900212

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 20900212

Country of ref document: EP

Kind code of ref document: A1