WO2018196408A1 - 一种软件开发方法及系统 - Google Patents

一种软件开发方法及系统 Download PDF

Info

Publication number
WO2018196408A1
WO2018196408A1 PCT/CN2017/117370 CN2017117370W WO2018196408A1 WO 2018196408 A1 WO2018196408 A1 WO 2018196408A1 CN 2017117370 W CN2017117370 W CN 2017117370W WO 2018196408 A1 WO2018196408 A1 WO 2018196408A1
Authority
WO
WIPO (PCT)
Prior art keywords
layer
view
data model
controller
network
Prior art date
Application number
PCT/CN2017/117370
Other languages
English (en)
French (fr)
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 WO2018196408A1 publication Critical patent/WO2018196408A1/zh

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/20Software design
    • G06F8/22Procedural

Definitions

  • the interface layer is used to: display a view interface;
  • the interface layer includes a view, a view logic program, and a view controller, and the view controller is configured to: set a view according to a data model in the data model layer;
  • the data model layer is used to: store a data model, and the data model includes a local logical data model and a network data mapping model;
  • the software development system comprises a working layer creation module, which is used for: creating a working layer associated with software, the working layer comprising an interface layer, a data model layer, a service layer and a network layer;
  • the service layer is used to: provide a service interface for the view logic program and the view controller of the interface layer;
  • the present invention splits the network layer into an API layer and a service layer, and the API layer and the service layer are combined, and the API layer is responsible for requesting the network to obtain Json data, and the service layer is responsible for The Json data is mapped to get the data model. Therefore, the present invention realizes the decoupling of the network layer, and the decoupling effect is not only reflected in the decomposition of duties, but also in the reusability of the code and the enhancement of subsequent scalability.
  • FIG. 1 is a structural block diagram of a working layer of software in an embodiment of the present invention.
  • the data model layer is used to: store a data model, and the data model includes a local logical data model and a network data mapping model;
  • the service layer is used to: provide a service interface for the view logic program and the view controller of the interface layer;
  • the network layer is used to: After returning Json data (JavaScript Object Notation, lightweight data) to the network, the Json data is mapped to the network data mapping model.
  • Json data JavaScript Object Notation, lightweight data
  • the embodiment of the present invention configures one sub-controller for each view, thereby being able to extract the corresponding program code from the parent controller.
  • File the purpose of "slimming" decoupling the view controller.
  • the sub-controller of the embodiment of the present invention only maintains a management logical relationship with the parent controller, and thus the sub-controller and the parent controller of the embodiment of the present invention are compared with the view controllers of the present invention. The coupling is very low.
  • the embodiment of the present invention can directly refresh the corresponding view according to the changed data model by using the sub-controller when the data model is changed, compared with the prior art that the service layer and the view controller are used to refresh the view. Not only does the understanding coupling between the business layer, the data model layer, and the interface layer, but also the view controller in the prior art does not need to look up the view, directly Set the bound view to significantly improve your productivity.
  • the API layer is used to: request the network to return Json data (JavaScript Object Notation, lightweight data);
  • the embodiment of the present invention splits the network layer into an API layer and a service layer, and the API layer and the service layer are combined, and the API layer is responsible for requesting the network to obtain Json data and services.
  • the layer is responsible for mapping the Json data to get the data model. Therefore, the embodiment of the present invention implements the decoupling of the network layer, and the decoupling effect is not only reflected in the decomposition of duties, but also in the reusability of the code and the enhancement of subsequent scalability.
  • S5 Create a base layer, and set a common business layer logic program in the base layer.
  • the purpose is: in most projects, there will be common components with the same purpose but different sets of logic programs, and the base layer can have multiple sets of logic programs. Different common components are unified, so that the software development and maintenance only need to operate on the logic program of 1, avoiding the problem of repeated addition of general code, ensuring the uniformity of logic implementation, not only significantly reducing the difficulty of work, but also improving the work. Efficiency, and great help for later code quality control and global function modification, very suitable for promotion.
  • the software development system in the embodiment of the present invention includes a working layer creation module, a view controller splitting module, a data model association module, a network layer splitting module, and a base layer creating module;
  • the interface layer is used to: display a view interface;
  • the interface layer includes a view, a view logic program, and a view controller, and the view controller is configured to: set a view according to a data model in the data model layer;
  • the data model layer is used to: store a data model, and the data model includes a local logical data model and a network data mapping model;
  • the network layer is used to: after returning Json data to the network, map the Json data to a network data mapping model.
  • the data model association module is configured to: associate the view set by each sub-controller with a corresponding data model in the data model layer, and when the data model changes, the sub-controller refreshes the corresponding view according to the changed data model. .
  • the API layer is used to: request the network to return Json data;
  • the service layer is used to: map the Json data returned by the API layer request into a network data mapping model.
  • the base layer creation module is used to: create a base layer in which a general business layer logic program is set.
  • the present invention enables a team developer to complete the entire process of requirement development in a project, improve personal skills, and there is no situation where a horizontally layered individual becomes a project bottleneck, and because of a general code organization standard. And the decoupling scheme, so the team members do not depend on each other, which greatly enhances the team's efficiency.
  • the addition of the base layer also serves to understand the efficiency of the team and enhance the robustness of the project.
  • the master project can be completed by simply assembling the programs of multiple sub-projects, and the operation flow is very simple and convenient for people to use.

Landscapes

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

Abstract

本发明公开了一种软件开发方法及系统,涉及软件开发领域。该方法的步骤为:创建与软件关联的工作层,工作层包括界面层、数据模型层、业务层和网络层;界面层用于:展示视图界面;界面层包括视图、视图逻辑程序和视图控制器,视图控制器用于:根据数据模型层中的数据模型设置视图;数据模型层用于:存放数据模型,数据模型包括本地逻辑数据模型和网络数据映射模型;业务层用于:为界面层的视图逻辑程序和视图控制器提供业务接口;网络层用于:向网络请求返回Json数据后,将Json数据映射为网络数据映射模型。本发明能够在软件开发时减少人力成本,降低软件的耦合度。

Description

一种软件开发方法及系统 技术领域
本发明涉及软件开发领域,具体涉及一种软件开发方法及系统。
背景技术
在软件的开发过程中,随着项目规模的增加和开发人员的增加,不同项目采用的编码风格和模块调用规则往往不同,进而导致最终项目中会出现各种风格的代码和模块,项目耦合性越来越高。对开发后的软件进行维护时,开发人员在改动不熟悉的模块时候很难入手,新加入开发成员需要花费较长的时间学习不同的编码规则。
为了便于对软件进行开发和维护,现有的软件开发方法一般为:通常是先对大型项目进行“横向分层”,例如将客户端分为多层:界面层、逻辑层、网络层和数据层,然后针对每一层工作层分别指派相应的开发人员进行开发和维护,自上而下依赖;相邻层之间的开发人员之间约定好接口,针对一个业务需求,每层的开发人员对应约定的接口实现,联调接入测试即可。
但是,上述方法存在以下缺陷:
(1)要实现每一层分别指派相应的开发人员开发和维护,需要针对每一层配备相关技术的开发人员,进而极大的增加了人力成本;与此同时,由于逻辑层的功能比较复杂和重要,因此通常需要比较资深的开发进行开发维护,而经验较少的开发基本没有机会介入,长期不利于团队成员的成长。
(2)不同编码规则的软件的合并难度较大,而且随着单个软件 中代码的增大,不同编码规则的软件的耦合度会急剧增高,非常不利于软件的开发和实现新需求。
例如:现有界面层中的视图控制器需要同时管理多幅视图,因此视图控制器中存在多种视图逻辑,进而急剧增高软件的耦合度。
又如:现有在界面中刷新视图时,业务层将数据模型改变的通知转发至视图控制器,控制器在多幅视图中找到对应的视图后进行刷新,业务层、数据模型层和界面层3者的耦合度较高。
再如:现有网络层需要负责至少以下2个功能:1、网络请求获取Json数据,2、对Json数据进行映射得到数据模型,网络层的耦合度较高。
(3)由于所有层自上而下依赖,因此下层的工作(开发和维护)需要等待上层工作发成后才能开始启动,进而导致整体开发的敏捷性较差,工作效率较低。
发明内容
针对现有技术中存在的缺陷,本发明解决的技术问题为:如何在软件开发时减少人力成本,降低软件的耦合度。
为达到以上目的,本发明提供的软件开发方法,包括以下步骤:
S1:创建与软件关联的工作层,工作层包括界面层、数据模型层、业务层和网络层;
界面层用于:展示视图界面;界面层包括视图、视图逻辑程序和视图控制器,视图控制器用于:根据数据模型层中的数据模型设置视图;
数据模型层用于:存放数据模型,数据模型包括本地逻辑数据模型和网络数据映射模型;
业务层用于:为界面层的视图逻辑程序和视图控制器提供业务接 口;
网络层用于:向网络请求返回Json数据后,将Json数据映射为网络数据映射模型。
本发明提供的软件开发系统,包括工作层创建模块,其用于:创建与软件关联的工作层,工作层包括界面层、数据模型层、业务层和网络层;
界面层用于:展示视图界面;界面层包括视图、视图逻辑程序和视图控制器,视图控制器用于:根据数据模型层中的数据模型设置视图;
数据模型层用于:存放数据模型,数据模型包括本地逻辑数据模型和网络数据映射模型;
业务层用于:为界面层的视图逻辑程序和视图控制器提供业务接口;
网络层用于:向网络请求返回Json数据后,将Json数据映射为网络数据映射模型。
与现有技术相比,本发明的优点在于:
(1)与现有技术中“横向分层”相比,本发明将软件的工作层进行“竖向分层”,即对工作层进行开发和维护时,隶属于同一部门的开发人员需要处理工作层每一层(界面层、数据模型层、业务层等)的开发维护工作,开发人员从一开始就介入了整个流程;而现有技术中隶属于同一部门的开发人员只处理工作层中一层的开发维护工作。因此,本发明降低了人力成本,非常适于推广。
在此基础上,隶属于同一部门的开发人员需要处理工作层每一层的开发维护工作,会使得不同部门的工作流程独立,避免出现现有技术中不同部门之间的依赖关系,进而提高整体开发的敏捷性和工作效 率。
与此同时,本发明使得隶属于不同部门的开发人员均遵从“竖向分层”的架构和标准,进而使得不同部门的开发人员的编码标准有序,不会因为个人风格的不一致影响到整体,进而为实现软件开发时的解耦合提高了先决条件。
进一步,不同部门通过本发明研发的子项目“组装”成母项目后,由于每个子项目之间的耦合度较低、且每个子项目的架构和编码规则统一,因此将多个子项目“组装”成母项目时,只用将多个子项目的程序拼装在一起即可完成母项目,其操作流程非常简单,便于人们使用。
(2)与现有技术中同时管理多幅视图的视图控制器相比,本发明为每1幅视图配置了1台子控制器,进而能够从父控制器中抽离对应的程序代码文件,实现对视图控制器进行“瘦身”解耦合的目的。与现有技术中存在多种视图逻辑的视图控制器相比,本发明的子控制器仅与父控制器保持管理的逻辑关系,因此本发明的子控制器与父控制器的耦合度非常低。
(3)与现有技术中的网络层相比,本发明将网络层拆分为API层和服务层,API层和服务层是组合关系,API层负责网络请求获取Json数据,服务层负责对Json数据进行映射得到数据模型。因此,本发明实现了网络层的解耦合,解耦合的效果不仅体现在职责的分解,而且体现在代码的复用性和后续扩展性的增强。
在复用性方面,API层的代码可以在多个服务层中复用(一层服务层串行调用多个API文件的接口),服务层的代码可在业务层、视图逻辑程序、甚至是轻量级的视图控制器中调用。在扩展性方面,网络请求底层方案或数据模型层的映射方案若有修改,分别针对API 层和服务层单独修改即可,非常便于人们使用。
通过(2)和(3)可知,本发明对大型工作层(视图控制器和网络层)进行了拆分,进而在物理层上减少了项目的耦合性。原本需要在一个文件中修改的多个需求被拆分到了不同文件,降低了多人开发的需求冲突问题。
(4)与现有技术中通过业务层和视图控制器来刷新视图相比,本发明能够在数据模型发生改变时,直接通过子控制器根据改变后的数据模型,刷新对应的视图,不仅对业务层、数据模型层和界面层3者之间实现了解耦合,而且与现有技术中视图控制器在多幅视图中找到对应的视图相比,子控制器不需要查找视图,直接设置绑定的视图即可,显著提高了工作效率。
(5)本发明的基础层能够将多套逻辑程序不同的通用组件进行统一,进而使得软件的开发和维护只需要对1中逻辑程序进行操作,避免了通用代码重复添加的问题,保证逻辑实现的统一性,不仅显著降低了工作难度,提高了工作效率,而且对后期的代码质量控制和全局功能修改有极大的帮助,非常适于推广。
附图说明
图1为本发明实施例中的软件的工作层的结构框图;
图2为本发明实施例中软件开发方法的流程图。
具体实施方式
以下结合附图及实施例对本发明作进一步详细说明。
参见图1和图2所示,本发明实施例中的软件开发方法,包括以下步骤:
S1:创建与软件关联的工作层(界面层、数据模型层、业务层和 网络层);
界面层用于:展示视图界面,界面层包括视图、视图逻辑程序和视图控制器,视图控制器用于:根据数据模型层中的数据模型设置视图;
数据模型层用于:存放数据模型,数据模型包括本地逻辑数据模型和网络数据映射模型;
业务层用于:为界面层的视图逻辑程序和视图控制器提供业务接口;
网络层用于:向网络请求返回Json数据(JavaScript Object Notation,轻量级的数据)后,将Json数据映射为网络数据映射模型。
根据S1可知,与现有技术中“横向分层”相比,本发明实施例将软件的工作层进行“竖向分层”(即对工作层进行开发和维护时,隶属于同一部门的开发人员需要处理工作层每一层的开发维护工作),开发人员从一开始就介入了整个流程,而现有技术中隶属于同一部门的开发人员只处理工作层中一层的开发维护工作。因此,本发明实施例显著降低了人力成本,非常适于推广。
在此基础上,隶属于同一部门的开发人员需要处理工作层每一层的开发维护工作,会使得不同部门的工作流程独立,避免出现现有技术中不同部门之间的依赖关系,进而提高整体开发的敏捷性和工作效率。
S2:将视图控制器分解为1台父控制器和至少3台子控制器,每台子控制器各与一幅视图绑定;子控制器用于:根据数据模型层中的数据模型,设置1幅视图,父控制器用于:管理所有子控制器的工作。
根据S2可知,与现有技术中同时管理多幅视图的视图控制器相比,本发明实施例为每1幅视图配置了1台子控制器,进而能够从父 控制器中抽离对应的程序代码文件,实现对视图控制器进行“瘦身”解耦合的目的。与现有技术中存在多种视图逻辑的视图控制器相比,本发明实施例的子控制器仅与父控制器保持管理的逻辑关系,因此本发明实施例的子控制器与父控制器的耦合度非常低。
S3:将每1台子控制器设置的视图,均与数据模型层中的对应的数据模型关联,当数据模型发生改变时,子控制器根据改变后的数据模型刷新对应的视图。
根据S3可知,与现有技术中通过业务层和视图控制器来刷新视图相比,本发明实施例能够在数据模型发生改变时,直接通过子控制器根据改变后的数据模型,刷新对应的视图,不仅对业务层、数据模型层和界面层3者之间实现了解耦合,而且与现有技术中视图控制器在多幅视图中找到对应的视图相比,子控制器不需要查找视图,直接设置绑定的视图即可,显著提高了工作效率。
S4:将网络层分为服务层和API层(Application Programming Interface,应用程序编程接口层);
API层用于:请求网络返回Json数据(JavaScript Object Notation,轻量级的数据);
服务层用于:将API层请求返回的Json数据映射为网络数据映射模型。
根据S4可知,与现有技术中的网络层相比,本发明实施例将网络层拆分为API层和服务层,API层和服务层是组合关系,API层负责网络请求获取Json数据,服务层负责对Json数据进行映射得到数据模型。因此,本发明实施例实现了网络层的解耦合,解耦合的效果不仅体现在职责的分解,而且体现在代码的复用性和后续扩展性的增强。
在复用性方面,API层的代码可以在多个服务层中复用(一层服务层串行调用多个API文件的接口),服务层的代码可在业务层、视图逻辑程序、甚至是轻量级的视图控制器中调用。
在扩展性方面,网络请求底层方案或数据模型层的映射方案若有修改,分别针对API层和服务层单独修改即可,非常便于人们使用。
S5:创建基础层,基础层中设置有通用业务层逻辑程序,其目的为:在大多数项目中,会存在目的相同、但多套逻辑程序不同的通用组件,基础层能够将多套逻辑程序不同的通用组件进行统一,进而使得软件的开发和维护只需要对1中逻辑程序进行操作,避免了通用代码重复添加的问题,保证逻辑实现的统一性,不仅显著降低了工作难度,提高了工作效率,而且对后期的代码质量控制和全局功能修改有极大的帮助,非常适于推广。
本发明实施例中的软件开发系统,包括工作层创建模块、视图控制器拆分模块、数据模型关联模块、网络层拆分模块和基础层创建模块;
工作层创建模块用于:创建与软件关联的工作层,工作层包括界面层、数据模型层、业务层和网络层;
界面层用于:展示视图界面;界面层包括视图、视图逻辑程序和视图控制器,视图控制器用于:根据数据模型层中的数据模型设置视图;
数据模型层用于:存放数据模型,数据模型包括本地逻辑数据模型和网络数据映射模型;
业务层用于:为界面层的视图逻辑程序和视图控制器提供业务接口;
网络层用于:向网络请求返回Json数据后,将Json数据映射为 网络数据映射模型。
视图控制器拆分模块用于:将视图控制器分为1台父控制器和至少3台子控制器,每台子控制器各与一幅视图绑定;子控制器用于:根据数据模型层中的数据模型,设置1幅视图,父控制器用于:管理所有子控制器的工作。
数据模型关联模块用于:将每1台子控制器设置的视图,均与数据模型层中的对应的数据模型关联,当数据模型发生改变时,子控制器根据改变后的数据模型刷新对应的视图。
网络层拆分模块用于:将网络层分为服务层和API层;
API层用于:请求网络返回Json数据;
服务层用于:将API层请求返回的Json数据映射为网络数据映射模型。
基础层创建模块用于:创建基础层,基础层中设置有通用业务层逻辑程序。
通过本发明实施例可知,本发明使得团队开发人员在项目中可以完成需求开发的全流程,个人技术提高,不会出现横向分层的个人成为项目瓶颈的情况,而且由于具有通用的代码组织标准和解耦方案,因此团队开发成员之间互不依赖,进而极大提升团队效率,基础层的加入同样起到了解耦提升团队效率,增强项目健壮性的目的。
进一步,不同部门通过本发明实施例研发的子项目“组装”成母项目后,由于每个子项目之间的耦合度较低、且每个子项目的架构和编码规则统一,因此将多个子项目“组装”成母项目时,只用将多个子项目的程序拼装在一起即可完成母项目,其操作流程非常简单,便于人们使用。
进一步,本发明不局限于上述实施方式,对于本技术领域的普通 技术人员来说,在不脱离本发明原理的前提下,还可以做出若干改进和润饰,这些改进和润饰也视为本发明的保护范围之内。本说明书中未作详细描述的内容属于本领域专业技术人员公知的现有技术。

Claims (10)

  1. 一种软件开发方法,其特征在于,该方法包括以下步骤:
    S1:创建与软件关联的工作层,工作层包括界面层、数据模型层、业务层和网络层;
    界面层用于:展示视图界面;界面层包括视图、视图逻辑程序和视图控制器,视图控制器用于:根据数据模型层中的数据模型设置视图;
    数据模型层用于:存放数据模型,数据模型包括本地逻辑数据模型和网络数据映射模型;
    业务层用于:为界面层的视图逻辑程序和视图控制器提供业务接口;
    网络层用于:向网络请求返回Json数据后,将Json数据映射为网络数据映射模型。
  2. 如权利要求1所述的软件开发方法,其特征在于,S1之后还包括以下步骤:S2:将视图控制器分为1台父控制器和至少3台子控制器,每台子控制器各与一幅视图绑定;子控制器用于:根据数据模型层中的数据模型,设置1幅视图,父控制器用于:管理所有子控制器的工作。
  3. 如权利要求2所述的软件开发方法,其特征在于,S2之后还包括以下步骤:S3:将每1台子控制器设置的视图,均与数据模型层中的对应的数据模型关联,当数据模型发生改变时,子控制器根据改变后的数据模型刷新对应的视图。
  4. 如权利要求1所述的软件开发方法,其特征在于,S1之后还包括以下步骤:S4:将网络层分为服务层和API层;
    API层用于:请求网络返回Json数据;
    服务层用于:将API层请求返回的Json数据映射为网络数据映射模型。
  5. 如权利要求1至4任一项所述的软件开发方法,其特征在于:S1之后还包括以下步骤:S5:创建基础层,基础层中设置有通用业务层逻辑程序。
  6. 一种软件开发系统,其特征在于:该系统包括工作层创建模块,其用于:创建与软件关联的工作层,工作层包括界面层、数据模型层、业务层和网络层;
    界面层用于:展示视图界面;界面层包括视图、视图逻辑程序和视图控制器,视图控制器用于:根据数据模型层中的数据模型设置视图;
    数据模型层用于:存放数据模型,数据模型包括本地逻辑数据模型和网络数据映射模型;
    业务层用于:为界面层的视图逻辑程序和视图控制器提供业务接口;
    网络层用于:向网络请求返回Json数据后,将Json数据映射为网络数据映射模型。
  7. 如权利要求6所述的软件开发系统,其特征在于:该系统还包括视图控制器拆分模块,其用于:将视图控制器分为1台父控制器和至少3台子控制器,每台子控制器各与一幅视图绑定;子控制器用于:根据数据模型层中的数据模型,设置1幅视图,父控制器用于:管理所有子控制器的工作。
  8. 如权利要求7所述的软件开发系统,其特征在于:该系统还包括数据模型关联模块,其用于:将每1台子控制器设置的视图,均与数据模型层中的对应的数据模型关联,当数据模型发生改变时,子 控制器根据改变后的数据模型刷新对应的视图。
  9. 如权利要求6所述的软件开发系统,其特征在于:该系统还包括网络层拆分模块,其用于:将网络层分为服务层和API层;
    API层用于:请求网络返回Json数据;
    服务层用于:将API层请求返回的Json数据映射为网络数据映射模型。
  10. 如权利要求6至9任一项所述的软件开发系统,其特征在于:该系统还包括基础层创建模块,其用于:创建基础层,基础层中设置有通用业务层逻辑程序。
PCT/CN2017/117370 2017-04-28 2017-12-20 一种软件开发方法及系统 WO2018196408A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201710297496.7 2017-04-28
CN201710297496.7A CN107145350B (zh) 2017-04-28 2017-04-28 一种软件开发方法及系统

Publications (1)

Publication Number Publication Date
WO2018196408A1 true WO2018196408A1 (zh) 2018-11-01

Family

ID=59774547

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2017/117370 WO2018196408A1 (zh) 2017-04-28 2017-12-20 一种软件开发方法及系统

Country Status (2)

Country Link
CN (1) CN107145350B (zh)
WO (1) WO2018196408A1 (zh)

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107145350B (zh) * 2017-04-28 2018-08-21 武汉斗鱼网络科技有限公司 一种软件开发方法及系统
CN107817968A (zh) * 2017-11-13 2018-03-20 重庆首亨软件有限公司 一种计算机软件开发系统
CN108769249B (zh) * 2018-06-20 2021-05-25 武汉斗鱼网络科技有限公司 iOS高性能高扩展网络装置及实现方法、服务器及介质
CN109783072A (zh) * 2019-01-23 2019-05-21 深圳智链物联科技有限公司 业务处理方法、装置、终端设备及计算机可读存储介质
CN110287434B (zh) * 2019-07-02 2022-02-25 郑州悉知信息科技股份有限公司 网站处理方法、装置及存储介质

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2007079955A (ja) * 2005-09-14 2007-03-29 Sony Corp 情報処理方法および装置、記録媒体、並びにプログラム
CN101226525A (zh) * 2007-01-19 2008-07-23 国际商业机器公司 控制web页面的下载和显示的方法、服务器、客户端及系统
US7433935B1 (en) * 2005-04-29 2008-10-07 Hewlett-Packard Development Company, L.P. Self-adapting plug-in service
CN104572761A (zh) * 2013-10-23 2015-04-29 中国科学院沈阳自动化研究所 一种分层应用技术框架
CN107145350A (zh) * 2017-04-28 2017-09-08 武汉斗鱼网络科技有限公司 一种软件开发方法及系统

Family Cites Families (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101446892B (zh) * 2007-11-26 2013-03-27 康佳集团股份有限公司 一种mvc模型系统数据处理方法及mvc模型系统
CN102646232A (zh) * 2012-03-30 2012-08-22 云南远信科技有限公司 一种高并发企业集中应用系统
CN104426983A (zh) * 2013-09-05 2015-03-18 携程计算机技术(上海)有限公司 网站建设系统及方法
DE102013225058A1 (de) * 2013-12-05 2015-06-11 Fraunhofer-Gesellschaft zur Förderung der angewandten Forschung e.V. Vorrichtung, system und verfahren zur effizienten und verzögerungsarmen synchronisation graphenförmiger datenstrukturen
CN105867907A (zh) * 2016-03-23 2016-08-17 沈阳师范大学 去除业务耦合性的JSS多层Web开发框架设计方法
CN105955714A (zh) * 2016-04-15 2016-09-21 北京海尔广科数字技术有限公司 混合开发前端mvc框架实现方法和系统
CN106560787A (zh) * 2016-12-29 2017-04-12 武汉斗鱼网络科技有限公司 一种基于mvvm架构的视图页面显示方法和装置

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7433935B1 (en) * 2005-04-29 2008-10-07 Hewlett-Packard Development Company, L.P. Self-adapting plug-in service
JP2007079955A (ja) * 2005-09-14 2007-03-29 Sony Corp 情報処理方法および装置、記録媒体、並びにプログラム
CN101226525A (zh) * 2007-01-19 2008-07-23 国际商业机器公司 控制web页面的下载和显示的方法、服务器、客户端及系统
CN104572761A (zh) * 2013-10-23 2015-04-29 中国科学院沈阳自动化研究所 一种分层应用技术框架
CN107145350A (zh) * 2017-04-28 2017-09-08 武汉斗鱼网络科技有限公司 一种软件开发方法及系统

Also Published As

Publication number Publication date
CN107145350B (zh) 2018-08-21
CN107145350A (zh) 2017-09-08

Similar Documents

Publication Publication Date Title
WO2018196408A1 (zh) 一种软件开发方法及系统
CN103593236B (zh) 一种业务流程调度的计算机设备、方法和装置
Zhao et al. Enabling scalable scientific workflow management in the Cloud
US11789964B2 (en) Load plan generation
CN106484394B (zh) 一种双引擎快速软件开发系统
CN107533453A (zh) 用于生成数据可视化应用的系统和方法
US20120246110A1 (en) Master Data Management in a Data Warehouse/Data Mart
CN105487864A (zh) 代码自动生成的方法和装置
CN101539855A (zh) 一种业务基础软件平台
CN113692582A (zh) 用于建立数据隐私管线和合约协议以共享数据的用户接口
US11783254B2 (en) Method and system for implementing an adaptive data governance system
US20130067456A1 (en) Application configuration framework for enterprise resource planning application installation
CN105531688A (zh) 提供作为其它服务的资源的服务
CN104102949A (zh) 一种分布式工作流装置及其处理工作流的方法
CN109981692A (zh) 一种新型工业物联网架构及其实现方法
US20140229223A1 (en) Integrated erp based planning
Li et al. Application of MVVM design pattern in MES
Pentek et al. Towards a reference model for data management in the digital economy
Linares-Vásquez et al. Gemma: multi-objective optimization of energy consumption of guis in android apps
Harkonen et al. Productization and product structure as the backbone for product data and fact-based analysis of company products
US20100228760A1 (en) Correlated query process (cqp) and peer-to-peer (p2p) execution
CA2816830C (en) Model for managing variations in a product structure for a product
US10140387B2 (en) Model for managing variations in a product structure for a product
Chang et al. Pattern-based framework for modularized software development and evolution robustness
CN107817968A (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: 17908078

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: 17908078

Country of ref document: EP

Kind code of ref document: A1