WO2019218470A1 - Service data processing method and apparatus, electronic device and medium - Google Patents

Service data processing method and apparatus, electronic device and medium Download PDF

Info

Publication number
WO2019218470A1
WO2019218470A1 PCT/CN2018/097314 CN2018097314W WO2019218470A1 WO 2019218470 A1 WO2019218470 A1 WO 2019218470A1 CN 2018097314 W CN2018097314 W CN 2018097314W WO 2019218470 A1 WO2019218470 A1 WO 2019218470A1
Authority
WO
WIPO (PCT)
Prior art keywords
component
processing
script
request data
error occurs
Prior art date
Application number
PCT/CN2018/097314
Other languages
French (fr)
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 WO2019218470A1 publication Critical patent/WO2019218470A1/en

Links

Classifications

    • 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/44521Dynamic linking or loading; Link editing at or after load time, e.g. Java class loading
    • G06F9/44526Plug-ins; Add-ons
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q40/00Finance; Insurance; Tax strategies; Processing of corporate or income taxes

Definitions

  • the present application belongs to the field of artificial intelligence technologies, and in particular, to a method for processing service data and an electronic device.
  • mapping relationship between the application identifier of the application and each processor is generally configured in web.xml or context.xml. After the web application system receives the request, according to the mapping relationship between the application identifier of the application and each processor, the corresponding processor is searched through the interface of each processor, and the request is forwarded to the corresponding processor.
  • the existing processing method of sending a request to the corresponding processor is cumbersome.
  • the routing rule changes it is difficult to adjust the routing rule according to the setting of the application.
  • the system receives the request and cannot be processed by the newly added application. Therefore, the processing method of the business data has technical problems of poor flexibility and low processing efficiency.
  • a first aspect of the embodiments of the present application provides a method for processing service data, including:
  • a second aspect of the embodiments of the present application provides a service data processing apparatus, where the service data processing apparatus includes a module for executing the processing method of the service data according to the first aspect.
  • a third aspect of the embodiments of the present application provides an electronic device including a memory and a processor, wherein the memory stores computer readable instructions executable on the processor, the processor executing the computer The steps of the processing method of the business data as described in the first aspect are implemented when the instruction is read.
  • a fourth aspect of the embodiments of the present application provides a computer readable storage medium storing computer readable instructions, the computer readable instructions being executed by a processor to implement the first aspect as described in the first aspect The steps of the method of processing business data.
  • the request data input by the user is received; the deployment descriptor in the request data is parsed to determine a servlet interface requested by the user, and the application.xml file is loaded through the servlet interface;
  • the .xml file retrieves a script component in more than one component library, generates a service component, processes the request data through the service component, and controls whether the distributed middleware zookeeper monitors whether a processing error occurs; if a processing error occurs, Or positioning an abnormal script component, and rolling back the abnormal script component to update the service component, and returning execution to process the request data by using the service component, and controlling the distributed middleware zookeeper
  • FIG. 1 is a flowchart of an implementation of a method for processing service data provided by an embodiment of the present application
  • FIG. 3 is a specific implementation flowchart of a method for processing service data S104 according to an embodiment of the present application
  • FIG. 4 is a structural block diagram of a processing apparatus for service data provided by an embodiment of the present application.
  • FIG. 5 is a schematic diagram of an electronic device according to an embodiment of the present application.
  • FIG. 1 shows an implementation flow of a method for processing service data provided by an embodiment of the present application, where the method process includes steps S101 to S106.
  • the specific implementation principle of each step is as follows.
  • S101 Receive request data input by a user.
  • the user first inputs the request data that needs to be processed to the processing electronic device of the service data, where the request data includes the service data and the deployment descriptor.
  • the business data is data that the user actually needs to process.
  • the business data can be the customer information of the customer and the loan request data.
  • the deployment descriptor in the request data is used to describe the deployment of a web application, including: servlet initialization parameters, servlet declarations, servlet mapping, and session configuration.
  • the processing electronic device of the business data can acquire what kind of data the user wishes to process by requesting the data, and through which program the data is processed.
  • the embodiment of the present application processes the request data by using a JavaEE program.
  • a unique servlet interface can be determined according to the servlet declaration, the servlet mapping, and the session configuration in the deployment descriptor, and a unique application.xml file can be loaded through the servlet interface.
  • the application.xml file includes configuration information of multiple component libraries, such as an engine configuration and a Visit configuration.
  • the embodiment of the present application pre-writes and stores a plurality of script components before step S101.
  • a process of generating a script component is further included as follows:
  • the Groovy language is a JVM-based agile development language that combines many of the features of Python, Ruby, and Smalltalk, and Groovy code can be combined with Java code and can be used to extend existing code.
  • the Groovy language is an object-oriented programming language that can be used both for object-oriented programming and purely scripting languages, and is well suited for use in financial systems to handle massively distributed storage. Data that can be processed by logic.
  • the component specification of the script component is registered in the .library file.
  • the component specification defines the path of the script component, and the .library file serves as a library project folder.
  • the electronic device when the script component needs to be invoked, the electronic device first determines a corresponding application.xml file through the servlet interface, and invokes the corresponding component library according to the configuration information in the application.xml file. Then, each component specification is registered in the .library file to determine the script components for processing the request data. Therefore, in the subsequent processing of the business data, the servlet interface can directly call these pre-written script components without repeatedly writing a script component for each request data, thereby improving the processing efficiency of the service data in the request data. At the same time, labor costs are reduced.
  • the method for processing the service data is further characterized by: after receiving the notification of the change of the script component, starting the update thread, loading the updated script component in the component library, and refresh cache.
  • the script components are pre-written and generated, it is not required to write a new script component every time the request receipt is received, but the script components are not constant. Change, the specific logic and code there is the possibility of updating. Therefore, when the engineer modifies a script component, the electronic device in the embodiment of the present application receives a script component to notify, and then loads the updated script component and updates the cache.
  • the service data included in one request data may need to be processed by multiple script components together, so the processing electronic device of the service data supports the stitching superposition of the script components.
  • a plurality of configuration information is registered in the application.xml file, and according to the configuration information, the corresponding component library can be locked, and then according to the .library file corresponding to each component library.
  • the script component is called.
  • a plurality of called script components are combined as a service component.
  • S104 Process the request data by using the service component, and control the distributed middleware zookeeper to monitor whether a processing error occurs.
  • a control distributed middleware zookeeper is set for monitoring whether a processing error occurs.
  • zooKeeper is a distributed open source distributed middleware that is an important component of Hadoop and Hbase.
  • Zookeeper is a middleware that provides consistent services for distributed applications, for example, to monitor the processing and results of service components.
  • the foregoing S104 includes:
  • S1041 Generate a path node for each script component in the service component, and register each of the path nodes in the distributed middleware zookeeper.
  • each script component in the service component is assigned a unique path node, and the path node is not necessarily the script component is stored.
  • the real path node in order to facilitate locking the abnormal script component in the subsequent process, in this step, each script component in the service component is assigned a unique path node, and the path node is not necessarily the script component is stored.
  • the real path node in order to facilitate locking the abnormal script component in the subsequent process, in this step, each script component in the service component is assigned a unique path node, and the path node is not necessarily the script component is stored.
  • the real path node in .
  • zookeeper as a distributed middleware will receive notification of the execution status of each script component, and the notification is used to indicate whether the script component is working properly.
  • the distributed middleware zookeeper will associate each notification with the path node and then cache it.
  • the electronic device in consideration of the need to send a notification for indicating a processing error to each device in time, the electronic device is required to subscribe to an event cached by each path node in the distributed middleware zookeeper.
  • the electronic device involved in the embodiment of the present application can know the execution status of each script component in time.
  • the script component has an update, so if a script component is locked as an execution error by the zookeeper, it proves that the script component has a problem after the update, so the script component is rolled back to the previous one. version. Furthermore, since a script component contained in the service component is rolled back, it is equivalent to updating the current service component.
  • the embodiment of the present application still monitors whether a processing error occurs in real time.
  • an exception stack log is generated and the exception stack log is synchronized to the log platform.
  • control user interaction interface presents the processing result of the request data to the user.
  • FIG. 4 is a structural block diagram of the processing apparatus for the service data provided by the embodiment of the present application. For the convenience of description, only the related to the embodiment of the present application is shown. section.
  • the apparatus includes:
  • the receiving module 401 is configured to receive request data input by a user
  • the parsing module 402 is configured to parse the deployment descriptor in the request data to determine a servlet interface requested by the user, and load the application.xml file through the servlet interface;
  • the calling module 403 is configured to retrieve a script component in one or more component libraries based on the application.xml file to generate a service component;
  • the monitoring module 404 is configured to process the request data by using the service component, and control whether the distributed middleware zookeeper monitors whether a processing error occurs;
  • a first execution module 405 configured to locate an abnormal script component if a processing error occurs, and roll back the abnormal script component to update the service component, and return to execute the service component pair Describe the request data for processing, and control the distributed middleware zookeeper to monitor whether there is a processing error step;
  • the second execution module 406 is configured to output a processing result of the request data if a processing error does not occur.
  • the method further includes:
  • a script component written in the Groovy language is stored in the component library after naming, and a component specification of the script component is registered in a .library file, the component specification is used to define a path of the script component;
  • the update thread After receiving the script component change notification, the update thread is started, the updated script component is loaded in the component library, and the cache is updated.
  • controlling distributed middleware zookeeper monitors whether a processing error occurs, including:
  • An event of each path node cache in the distributed middleware zookeeper is subscribed, and the event includes an execution status of the script component to monitor whether a processing error occurs.
  • an exception stack log is generated and the exception stack log is synchronized to the logging platform.
  • control user interaction interface presents the processing result of the request data to the user.
  • the request data input by the user is received; the deployment descriptor in the request data is parsed to determine a servlet interface requested by the user, and the application.xml file is loaded through the servlet interface.
  • the distributed middleware zookeeper monitors whether there is a processing error step; if no processing error occurs, the processing result of the requested data is outputted, so as to reduce the difficulty and workload of the engineering personnel processing the business data, and at the same time, it is beneficial to monitor and maintain the processing program. .
  • FIG. 5 is a schematic diagram of an electronic device according to an embodiment of the present application.
  • the electronic device 5 of this embodiment includes a processor 50, a memory 51, and computer readable instructions 52 stored in the memory 51 and operable on the processor 50, such as business data. Processing program.
  • the processor 50 executes the computer readable instructions 52 to implement the steps in the foregoing method for processing various service data, such as steps 101 to 106 shown in FIG.
  • the processor 50 when executing the computer readable instructions 52, implements the functions of the various modules/units in the various apparatus embodiments described above, such as the functions of the units 401 through 406 shown in FIG.
  • the computer readable instructions 52 may be partitioned into one or more modules/units that are stored in the memory 51 and executed by the processor 50, To complete this application.
  • the one or more modules/units may be a series of computer readable instruction instructions segments capable of performing a particular function, the instruction segments being used to describe the execution of the computer readable instructions 52 in the electronic device 5.
  • the electronic device 5 may be a computing device such as a desktop computer, a notebook, a palmtop computer, and a cloud server.
  • the electronic device may include, but is not limited to, a processor 50, a memory 51. It will be understood by those skilled in the art that FIG. 5 is only an example of the electronic device 5, and does not constitute a limitation on the electronic device 5, and may include more or less components than those illustrated, or combine some components, or different components.
  • the electronic device may further include an input and output device, a network access device, a bus, and the like.
  • the so-called processor 50 can be a central processing unit (Central Processing Unit, CPU), can also be other general-purpose processors, digital signal processors (DSP), application specific integrated circuits (Application Specific Integrated Circuit (ASIC), Field-Programmable Gate Array (FPGA) or other programmable logic device, discrete gate or transistor logic device, discrete hardware components, etc.
  • the general purpose processor may be a microprocessor or the processor or any conventional processor or the like.
  • the memory 51 may be an internal storage unit of the electronic device 5, such as a hard disk or a memory of the electronic device 5.
  • the memory 51 may also be an external storage device of the electronic device 5, such as a plug-in hard disk equipped on the electronic device 5, a smart memory card (SMC), and a secure digital (SD). Card, flash card (Flash Card) and so on.
  • the memory 51 may also include both an internal storage unit of the electronic device 5 and an external storage device.
  • the memory 51 is configured to store the computer readable instructions and other programs and data required by the electronic device.
  • the memory 51 can also be used to temporarily store data that has been output or is about to be output.
  • each functional unit and module described above is exemplified. In practical applications, the above functions may be assigned to different functional units as needed.
  • the module is completed by dividing the internal structure of the device into different functional units or modules to perform all or part of the functions described above.
  • Each functional unit and module in the embodiment may be integrated into one processing unit, or each unit may exist physically separately, or two or more units may be integrated into one unit, and the integrated unit may be hardware.
  • Formal implementation can also be implemented in the form of software functional units.
  • the specific names of the respective functional units and modules are only for the purpose of facilitating mutual differentiation, and are not intended to limit the scope of protection of the present application.
  • For the specific working process of the unit and the module in the foregoing system reference may be made to the corresponding process in the foregoing method embodiment, and details are not described herein again.
  • 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, may be located in one place, or may be distributed to multiple network units. Some or all of the units may be selected according to actual needs to achieve the purpose of the solution of the embodiment.
  • the integrated modules/units if implemented in the form of software functional units and sold or used as separate products, may be stored in a computer readable storage medium. Based on such understanding, the present application implements all or part of the processes in the foregoing embodiments, and may also be implemented by computer readable instructions, which may be stored in a computer readable storage medium. in.

Abstract

The present application is applicable to the field of artificial intelligence technology, and provides a service data processing method and apparatus, an electronic device, and a medium. The method comprises: receiving request data inputted by a user; parsing a deployment descriptor in the request data, to determine a servlet interface that the user requests to access, and loading an application.xml file by means of the servlet interface; invoking, on the basis of the application.xml file, more than one script component from a component library, so as to generate a service component; processing the request data by means of the service component, and controlling a distributed middleware zookeeper to detect whether a processing error occurs; if a processing error occurs, locating an abnormal script component, rolling back the abnormal script component to update the service component, and returning to execute the step of processing the request data by means of the service component and controlling the distributed middleware zookeeper to detect whether a processing error occurs; if no processing error occurs, outputting a processing result of the request data, so as to reduce the difficulty and workload of engineers in processing service data whilst facilitating monitoring and maintaining processing programs.

Description

业务数据的处理方法、装置、电子设备及介质Method, device, electronic device and medium for processing business data
本申请要求于2018年05月14日提交中国专利局、申请号为201810456930.6、发明名称为“业务数据的处理方法及电子设备”的中国专利申请的优先权,其全部内容通过引用结合在本申请中。The present application claims priority to Chinese Patent Application No. 201810456930.6, entitled "Processing Method for Business Data and Electronic Equipment", filed on May 14, 2018, the entire contents of which is incorporated herein by reference. in.
技术领域Technical field
本申请属于人工智能技术领域,尤其涉及一种业务数据的处理方法及电子设备。The present application belongs to the field of artificial intelligence technologies, and in particular, to a method for processing service data and an electronic device.
背景技术Background technique
    Web应用系统在提供可访问的应用程序时,一般是在web.xml或者context.xml中配置应用程序的程序标识与各个处理器的映射关系。当Web应用系统接收到请求之后,根据应用程序的程序标识与各个处理器的映射关系,通过各个处理器的接口查找对应的处理器,并将请求转发至对应的处理器中。 When a web application system provides an accessible application, the mapping relationship between the application identifier of the application and each processor is generally configured in web.xml or context.xml. After the web application system receives the request, according to the mapping relationship between the application identifier of the application and each processor, the corresponding processor is searched through the interface of each processor, and the request is forwarded to the corresponding processor.
但是现有的发送请求至相应的处理器的方法的处理流程较为繁琐,当路由规则发生变化后,难以根据应用程序的设定而进行路由规则的调节。此外在系统运行过程中,当一个处理器内动态添加新的应用程序时,系统收到的请求也无法通过该新添加的应用程序进行处理。所以业务数据的处理方法存在灵活性差,处理效率低的技术问题。However, the existing processing method of sending a request to the corresponding processor is cumbersome. When the routing rule changes, it is difficult to adjust the routing rule according to the setting of the application. In addition, when a new application is dynamically added in a processor during system operation, the system receives the request and cannot be processed by the newly added application. Therefore, the processing method of the business data has technical problems of poor flexibility and low processing efficiency.
技术问题technical problem
现有技术在处理业务数据时存在的处理数据量过大,维护及修复成本高的问题。In the prior art, when the service data is processed, the amount of processed data is too large, and the maintenance and repair cost is high.
技术解决方案Technical solution
本申请实施例的第一方面提供了一种业务数据的处理方法,包括:A first aspect of the embodiments of the present application provides a method for processing service data, including:
接收用户输入的请求数据;解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;若未出现处理错误,则输出所述请求数据的处理结果。Receiving request data input by the user; parsing the deployment descriptor in the request data to determine a servlet interface requested by the user, and loading the application.xml file through the servlet interface; and acquiring more than one based on the application.xml file a script component in the component library, generating a service component; processing the request data by the service component, and controlling whether the distributed middleware zookeeper monitors whether a processing error occurs; if a processing error occurs, the abnormal script component is located And rolling back the abnormal script component to update the service component, and returning to perform processing on the request data by the service component, and controlling the distributed middleware zookeeper to monitor whether a processing error occurs If the processing error does not occur, the processing result of the request data is output.
本申请实施例的第二方面提供了一种业务数据的处理装置,该业务数据的处理装置包括用于执行上述第一方面所述的业务数据的处理方法的模块。A second aspect of the embodiments of the present application provides a service data processing apparatus, where the service data processing apparatus includes a module for executing the processing method of the service data according to the first aspect.
本申请实施例的第三方面提供了一种电子设备,包括存储器以及处理器,所述存储器中存储有可在所述处理器上运行的计算机可读指令,所述处理器执行所述计算机可读指令时实现如第一方面所述的业务数据的处理方法的步骤。A third aspect of the embodiments of the present application provides an electronic device including a memory and a processor, wherein the memory stores computer readable instructions executable on the processor, the processor executing the computer The steps of the processing method of the business data as described in the first aspect are implemented when the instruction is read.
本申请实施例的第四方面提供了一种计算机可读存储介质,所述计算机可读存储介质存储有计算机可读指令,所述计算机可读指令被处理器执行时实现如第一方面所述的业务数据的处理方法的步骤。A fourth aspect of the embodiments of the present application provides a computer readable storage medium storing computer readable instructions, the computer readable instructions being executed by a processor to implement the first aspect as described in the first aspect The steps of the method of processing business data.
有益效果Beneficial effect
本申请实施例中,通过接收用户输入的请求数据;解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;若未出现处理错误,则输出所述请求数据的处理结果,以降低工程人员处理业务数据的难度和工作量,同时有利于监控和维护处理程序。In the embodiment of the present application, the request data input by the user is received; the deployment descriptor in the request data is parsed to determine a servlet interface requested by the user, and the application.xml file is loaded through the servlet interface; The .xml file retrieves a script component in more than one component library, generates a service component, processes the request data through the service component, and controls whether the distributed middleware zookeeper monitors whether a processing error occurs; if a processing error occurs, Or positioning an abnormal script component, and rolling back the abnormal script component to update the service component, and returning execution to process the request data by using the service component, and controlling the distributed middleware zookeeper The step of monitoring whether a processing error occurs; if no processing error occurs, the processing result of the requested data is outputted, so as to reduce the difficulty and workload of the engineering personnel in processing the business data, and at the same time, it is advantageous to monitor and maintain the processing program.
附图说明DRAWINGS
图1是本申请实施例提供的业务数据的处理方法的实现流程图;1 is a flowchart of an implementation of a method for processing service data provided by an embodiment of the present application;
图2是本申请实施例提供的脚本组件的生成流程图;2 is a flowchart of generating a script component provided by an embodiment of the present application;
图3是本申请实施例提供的业务数据的处理方法S104的具体实现流程图;FIG. 3 is a specific implementation flowchart of a method for processing service data S104 according to an embodiment of the present application;
图4是本申请实施例提供的业务数据的处理装置的结构框图;4 is a structural block diagram of a processing apparatus for service data provided by an embodiment of the present application;
图5是本申请实施例提供的电子设备的示意图。FIG. 5 is a schematic diagram of an electronic device according to an embodiment of the present application.
本发明的实施方式Embodiments of the invention
为了说明本申请所述的技术方案,下面通过具体实施例来进行说明。In order to explain the technical solutions described in the present application, the following description will be made by way of specific embodiments.
图1示出了本申请实施例提供的业务数据的处理方法的实现流程,该方法流程包括步骤S101至S106。各步骤的具体实现原理如下。FIG. 1 shows an implementation flow of a method for processing service data provided by an embodiment of the present application, where the method process includes steps S101 to S106. The specific implementation principle of each step is as follows.
S101:接收用户输入的请求数据。S101: Receive request data input by a user.
在本申请实施例中,用户首先将需要处理的请求数据输入至业务数据的处理电子设备,其中请求数据包括业务数据以及部署描述符。可以理解地,业务数据为用户实际需要处理的数据,例如,在金融系统中,如果一个客户希望办理贷款业务,则业务数据可以为该客户的客户信息以及贷款请求数据。除此之外,请求数据中的部署描述符用于描述一个Web应用程序的部署,具体包括:servlet初始化参数、servlet声明、servlet映射以及session配置等数据。可以理解地,业务数据的处理电子设备通过请求数据可以获取用户希望处理何种数据,以及通过何种程序处理该数据。In the embodiment of the present application, the user first inputs the request data that needs to be processed to the processing electronic device of the service data, where the request data includes the service data and the deployment descriptor. It can be understood that the business data is data that the user actually needs to process. For example, in the financial system, if a customer wishes to handle the loan business, the business data can be the customer information of the customer and the loan request data. In addition, the deployment descriptor in the request data is used to describe the deployment of a web application, including: servlet initialization parameters, servlet declarations, servlet mapping, and session configuration. It can be understood that the processing electronic device of the business data can acquire what kind of data the user wishes to process by requesting the data, and through which program the data is processed.
S102,解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件。S102. Parse the deployment descriptor in the request data to determine a servlet interface requested by the user, and load the application.xml file through the servlet interface.
可选地,本申请实施例采用JavaEE程序对请求数据进行处理。Optionally, the embodiment of the present application processes the request data by using a JavaEE program.
可选地,在获取到请求数据后,根据部署描述符中的servlet声明、servlet映射以及session配置可以确定一个唯一的servlet接口,通过该servlet接口可以加载一个唯一的application.xml文件。值得注意地,在本申请实施例中,application.xml文件包括多个组件库的配置信息,例如:engine配置以及Visit配置等。Optionally, after the request data is obtained, a unique servlet interface can be determined according to the servlet declaration, the servlet mapping, and the session configuration in the deployment descriptor, and a unique application.xml file can be loaded through the servlet interface. Notably, in the embodiment of the present application, the application.xml file includes configuration information of multiple component libraries, such as an engine configuration and a Visit configuration.
可以理解地,在本申请实施例中,真正用于处理请求数据中的业务数据的是一个以上的脚本组件,而通过application.xml文件中的配置信息,就可以查找及调用到这些脚本组件所在的组件库。It can be understood that, in the embodiment of the present application, more than one script component is actually used to process the service data in the request data, and the configuration information in the application.xml file can be used to find and call the script component. Component library.
值得注意地,为了减少工程人员在处理相同或类似的业务数据时,重复进行脚本组件的开发和编译,本申请实施例在步骤S101之前,预先编写和存储了多个脚本组件。Notably, in order to reduce the development and compilation of the script component by the engineering staff when processing the same or similar business data, the embodiment of the present application pre-writes and stores a plurality of script components before step S101.
作为本申请的一个实施例,如图2所示,在所述接收用户输入的请求数据之前,还包括一个脚本组件的生成流程,详述如下:As an embodiment of the present application, as shown in FIG. 2, before the request data input by the user is received, a process of generating a script component is further included as follows:
S201,将通过Groovy语言编写的脚本组件在命名后存储于所述组件库中,并在.library文件中注册所述脚本组件的组件规范,所述组件规范用于定义所述脚本组件的路径。S201. Store a script component written in the Groovy language in the component library after naming, and register a component specification of the script component in a .library file, where the component specification is used to define a path of the script component.
可以理解地,Groovy语言作为一种基于JVM的敏捷开发语言,它结合了Python、Ruby和Smalltalk的许多特性,而且Groovy 代码能够与 Java 代码很好地结合,也能用于扩展现有代码。除此之外,Groovy语言作为一种面向对象的编程语言,既可以用于面向对象编程,又可以用作纯粹的脚本语言,非常适合应用在金融系统中,以处理海量分布式存储的、但却可被类似逻辑处理的数据。Understandably, the Groovy language is a JVM-based agile development language that combines many of the features of Python, Ruby, and Smalltalk, and Groovy code can be combined with Java code and can be used to extend existing code. In addition, the Groovy language is an object-oriented programming language that can be used both for object-oriented programming and purely scripting languages, and is well suited for use in financial systems to handle massively distributed storage. Data that can be processed by logic.
可选地,在通过Groovy语言编写一个脚本组件后,会在.library文件中注册所述脚本组件的组件规范。其中在本申请实施例中,组件规范定义了脚本组件的路径,.library文件作为库项目文件夹,通过注册各个组件规范,可以方便业务数据的处理电子设备在后续的步骤中调用脚本组件。Optionally, after writing a script component in the Groovy language, the component specification of the script component is registered in the .library file. In the embodiment of the present application, the component specification defines the path of the script component, and the .library file serves as a library project folder. By registering each component specification, the processing electronic device of the business data can be conveniently invoked in a subsequent step.
S202,在所述application.xml文件中注册所述组件库的配置信息。S202. Register configuration information of the component library in the application.xml file.
可以理解地,在本申请实施例中,当需要调用脚本组件时,电子设备会首先通过servlet接口确定一个对应的application.xml文件,并根据application.xml文件中的配置信息,调用对应的组件库,之后通过.library文件中注册各个组件规范,确定各个用于处理请求数据的脚本组件。因此,在后续的业务数据的处理过程中,servlet接口可以直接调用这些预先编写的脚本组件,而不需要针对每个请求数据重复编写脚本组件,提高了对于请求数据中的业务数据的处理效率,同时降低了劳动成本。It can be understood that, in the embodiment of the present application, when the script component needs to be invoked, the electronic device first determines a corresponding application.xml file through the servlet interface, and invokes the corresponding component library according to the configuration information in the application.xml file. Then, each component specification is registered in the .library file to determine the script components for processing the request data. Therefore, in the subsequent processing of the business data, the servlet interface can directly call these pre-written script components without repeatedly writing a script component for each request data, thereby improving the processing efficiency of the service data in the request data. At the same time, labor costs are reduced.
进一步地,在本申请实施例中,业务数据的处理方法,其特征在于,还包括:在接收到脚本组件变更通知后,启动更新线程,在所述组件库中加载更新后的脚本组件,并更新缓存。Further, in the embodiment of the present application, the method for processing the service data is further characterized by: after receiving the notification of the change of the script component, starting the update thread, loading the updated script component in the component library, and refresh cache.
可以理解地,由于在本申请实施例中,虽然脚本组件都是预先编写生成的,并不需要在每次在收到请求收据时都编写生成新的脚本组件,但是各个脚本组件并不是恒定不变的,具体的逻辑和代码存在着更新的可能。因此,当工程人员修改一个脚本组件时,本申请实施例中的电子设备会接收到一个脚本组件斌更通知,随后加载更新后的脚本组件,并更新缓存。It can be understood that, in the embodiment of the present application, although the script components are pre-written and generated, it is not required to write a new script component every time the request receipt is received, but the script components are not constant. Change, the specific logic and code there is the possibility of updating. Therefore, when the engineer modifies a script component, the electronic device in the embodiment of the present application receives a script component to notify, and then loads the updated script component and updates the cache.
S103,基于所述application.xml文件调取一个以上组件库中的脚本组件,生成服务组件。S103. Acquire a script component in one or more component libraries based on the application.xml file to generate a service component.
在本申请实施例中,一个请求数据中包含的业务数据可能需要多个脚本组件共同处理,因此业务数据的处理电子设备支持脚本组件的拼接叠加。In the embodiment of the present application, the service data included in one request data may need to be processed by multiple script components together, so the processing electronic device of the service data supports the stitching superposition of the script components.
通过上文实施例可知,在脚本组件的生成过程中,application.xml文件中注册有多个配置信息,而根据这些配置信息可以锁定对应的组件库,并进而根据各个组件库对应的.library文件中的组件规范,调取脚本组件。在本申请实施例中,将多个被调用的脚本组件合并后作为服务组件。According to the above embodiment, in the process of generating the script component, a plurality of configuration information is registered in the application.xml file, and according to the configuration information, the corresponding component library can be locked, and then according to the .library file corresponding to each component library. In the component specification, the script component is called. In the embodiment of the present application, a plurality of called script components are combined as a service component.
S104,通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误。S104. Process the request data by using the service component, and control the distributed middleware zookeeper to monitor whether a processing error occurs.
在本申请实施例中,由于在自动调用生成服务组件后,还存在通过服务组件对请求数据处理错误的可能,所以设定了一个控制分布式中间件zookeeper,用于监控是否出现处理错误。In the embodiment of the present application, since there is a possibility that the request component is processed by the service component after the automatic generation of the service component is generated, a control distributed middleware zookeeper is set for monitoring whether a processing error occurs.
可以理解地,zooKeeper是一个分布式的开放源码的分布式中间件,是Hadoop和Hbase的重要组件。Zookeeper是一个为分布式应用提供一致性服务的中间件,例如,可用于对服务组件的处理过程和结果进行监控。Understandably, zooKeeper is a distributed open source distributed middleware that is an important component of Hadoop and Hbase. Zookeeper is a middleware that provides consistent services for distributed applications, for example, to monitor the processing and results of service components.
作为本申请的一个实施例,如图3所示,上述S104包括:As an embodiment of the present application, as shown in FIG. 3, the foregoing S104 includes:
S1041,为所述服务组件中的每个脚本组件生成一个路径节点,并将各个所述路径节点注册至所述分布式中间件zookeeper中。S1041: Generate a path node for each script component in the service component, and register each of the path nodes in the distributed middleware zookeeper.
值得注意地,为了便于在后续的过程中锁定异常的脚本组件,在本步骤中,会为服务组件中的各个脚本组件分配一个唯一的路径节点,而这个路径节点不一定是该脚本组件在存储中的真实路径节点。Notably, in order to facilitate locking the abnormal script component in the subsequent process, in this step, each script component in the service component is assigned a unique path node, and the path node is not necessarily the script component is stored. The real path node in .
S1042,通过所述分布式中间件zookeeper接收含有所述脚本组件的执行状态的通知,并将所述执行状态同步至与所述脚本组件对应的所述路径节点中。S1042. Receive, by the distributed middleware zookeeper, a notification that includes an execution status of the script component, and synchronize the execution state to the path node corresponding to the script component.
可以理解地,zookeeper作为分布式中间件会接收各个脚本组件的执行状态的通知,而该通知用于指示该脚本组件是否运行正常。此外,分布式中间件zookeeper会将各个通知与路径节点对应起来,再进行缓存。Understandably, zookeeper as a distributed middleware will receive notification of the execution status of each script component, and the notification is used to indicate whether the script component is working properly. In addition, the distributed middleware zookeeper will associate each notification with the path node and then cache it.
S1043,订阅所述分布式中间件zookeeper中各个路径节点缓存的事件,所述事件包括所述脚本组件的执行状态,以监控是否出现处理错误。S1043. Subscribe to an event cached by each path node in the distributed middleware zookeeper, where the event includes an execution status of the script component to monitor whether a processing error occurs.
值得注意地,在本申请实施例中,考虑到需要及时将用于指示处理错误的通知发送至各个设备,因此需要电子设备订阅所述分布式中间件zookeeper中各个路径节点缓存的事件。通过上述方法,本申请实施例所涉及的电子设备可以及时获知各个脚本组件的执行状态。Notably, in the embodiment of the present application, in consideration of the need to send a notification for indicating a processing error to each device in time, the electronic device is required to subscribe to an event cached by each path node in the distributed middleware zookeeper. Through the above method, the electronic device involved in the embodiment of the present application can know the execution status of each script component in time.
S105,若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤。S105. If a processing error occurs, locate an abnormal script component, and roll back the abnormal script component to update the service component, and return execution to process the request data by using the service component. And control the distributed middleware zookeeper to monitor whether there is a processing error step.
如上文实施例所述,在本申请实施例中,脚本组件存在更新,因此一个脚本组件如果被zookeeper锁定为执行错误,则证明该脚本组件更新后出现问题,因此将该脚本组件回滚至上一个版本。进而,由于服务组件中包含的一个脚本组件回滚,因此相当于更新了当前的服务组件。As described in the foregoing embodiment, in the embodiment of the present application, the script component has an update, so if a script component is locked as an execution error by the zookeeper, it proves that the script component has a problem after the update, so the script component is rolled back to the previous one. version. Furthermore, since a script component contained in the service component is rolled back, it is equivalent to updating the current service component.
在完成上述的回滚过程后,本申请实施例依旧实时监控是否出现处理错误。After the above-mentioned rollback process is completed, the embodiment of the present application still monitors whether a processing error occurs in real time.
可选地,若出现处理错误,则生成异常堆栈日志,并将所述异常堆栈日志同步至日志平台。Optionally, if a processing error occurs, an exception stack log is generated and the exception stack log is synchronized to the log platform.
S106,若未出现处理错误,则输出所述请求数据的处理结果。S106. If no processing error occurs, outputting the processing result of the request data.
可选地,若未出现处理错误,则控制用户交互界面将请求数据的处理结果展示给所述用户。Optionally, if no processing error occurs, the control user interaction interface presents the processing result of the request data to the user.
可以理解地,通过接收用户输入的请求数据;解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;若未出现处理错误,则输出所述请求数据的处理结果,以降低工程人员处理业务数据的难度和工作量,同时有利于监控和维护处理程序。Comprehensibly, by receiving request data input by the user; parsing the deployment descriptor in the request data to determine a servlet interface requested by the user, and loading an application.xml file through the servlet interface; based on the application.xml The file retrieves the script component in more than one component library, generates a service component, processes the request data through the service component, and controls whether the distributed middleware zookeeper monitors whether a processing error occurs; if a processing error occurs, the file is located. Executing an abnormal script component, and rolling back the abnormal script component to update the service component, and returning execution to process the request data through the service component, and controlling whether the distributed middleware zookeeper monitors whether The processing error occurs; if no processing error occurs, the processing result of the requested data is outputted, so as to reduce the difficulty and workload of the engineering personnel in processing the business data, and at the same time, it is beneficial to monitor and maintain the processing program.
对应于上文实施例所述的业务数据的处理方法,图4示出了本申请实施例提供的业务数据的处理装置的结构框图,为了便于说明,仅示出了与本申请实施例相关的部分。Corresponding to the processing method of the service data described in the foregoing embodiment, FIG. 4 is a structural block diagram of the processing apparatus for the service data provided by the embodiment of the present application. For the convenience of description, only the related to the embodiment of the present application is shown. section.
参照图4,该装置包括:Referring to Figure 4, the apparatus includes:
接收模块401,用于接收用户输入的请求数据;The receiving module 401 is configured to receive request data input by a user;
解析模块402,用于解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;The parsing module 402 is configured to parse the deployment descriptor in the request data to determine a servlet interface requested by the user, and load the application.xml file through the servlet interface;
调取模块403,用于基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;The calling module 403 is configured to retrieve a script component in one or more component libraries based on the application.xml file to generate a service component;
监控模块404,用于通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;The monitoring module 404 is configured to process the request data by using the service component, and control whether the distributed middleware zookeeper monitors whether a processing error occurs;
第一执行模块405,用于若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;a first execution module 405, configured to locate an abnormal script component if a processing error occurs, and roll back the abnormal script component to update the service component, and return to execute the service component pair Describe the request data for processing, and control the distributed middleware zookeeper to monitor whether there is a processing error step;
第二执行模块406,用于若未出现处理错误,则输出所述请求数据的处理结果。The second execution module 406 is configured to output a processing result of the request data if a processing error does not occur.
进一步地,在所述接收用户输入的请求数据之前,还包括:Further, before the receiving the request data input by the user, the method further includes:
将通过Groovy语言编写的脚本组件在命名后存储于所述组件库中,并在.library文件中注册所述脚本组件的组件规范,所述组件规范用于定义所述脚本组件的路径;a script component written in the Groovy language is stored in the component library after naming, and a component specification of the script component is registered in a .library file, the component specification is used to define a path of the script component;
在所述application.xml文件中注册所述组件库的配置信息。Registering the configuration information of the component library in the application.xml file.
进一步地,还包括:Further, it also includes:
在接收到脚本组件变更通知后,启动更新线程,在所述组件库中加载更新后的脚本组件,并更新缓存。After receiving the script component change notification, the update thread is started, the updated script component is loaded in the component library, and the cache is updated.
进一步地,所述控制分布式中间件zookeeper监控是否出现处理错误,包括:Further, the controlling distributed middleware zookeeper monitors whether a processing error occurs, including:
为所述服务组件中的每个脚本组件生成一个路径节点,并将各个所述路径节点注册至所述分布式中间件zookeeper中;Generating a path node for each script component in the service component, and registering each of the path nodes in the distributed middleware zookeeper;
通过所述分布式中间件zookeeper接收含有所述脚本组件的执行状态的通知,并将所述执行状态同步至与所述脚本组件对应的所述路径节点中;Receiving, by the distributed middleware zookeeper, a notification containing an execution status of the script component, and synchronizing the execution state to the path node corresponding to the script component;
订阅所述分布式中间件zookeeper中各个路径节点缓存的事件,所述事件包括所述脚本组件的执行状态,以监控是否出现处理错误。An event of each path node cache in the distributed middleware zookeeper is subscribed, and the event includes an execution status of the script component to monitor whether a processing error occurs.
进一步地,还包括:Further, it also includes:
若出现处理错误,则生成异常堆栈日志,并将所述异常堆栈日志同步至日志平台。If a processing error occurs, an exception stack log is generated and the exception stack log is synchronized to the logging platform.
若未出现处理错误,则控制用户交互界面将请求数据的处理结果展示给所述用户。If no processing error occurs, the control user interaction interface presents the processing result of the request data to the user.
在本申请实施例中,可以理解地,通过接收用户输入的请求数据;解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;若未出现处理错误,则输出所述请求数据的处理结果,以降低工程人员处理业务数据的难度和工作量,同时有利于监控和维护处理程序。In the embodiment of the present application, it is understood that the request data input by the user is received; the deployment descriptor in the request data is parsed to determine a servlet interface requested by the user, and the application.xml file is loaded through the servlet interface. Retrieving a script component in one or more component libraries based on the application.xml file, generating a service component; processing the request data by the service component, and controlling whether the distributed middleware zookeeper monitors whether a processing error occurs; If a processing error occurs, locate an abnormal script component, and roll back the abnormal script component to update the service component, and return execution to process the request data through the service component, and control The distributed middleware zookeeper monitors whether there is a processing error step; if no processing error occurs, the processing result of the requested data is outputted, so as to reduce the difficulty and workload of the engineering personnel processing the business data, and at the same time, it is beneficial to monitor and maintain the processing program. .
图5是本申请一实施例提供的电子设备的示意图。如图5所示,该实施例的电子设备5包括:处理器50、存储器51以及存储在所述存储器51中并可在所述处理器50上运行的计算机可读指令52,例如业务数据的处理程序。所述处理器50执行所述计算机可读指令52时实现上述各个业务数据的处理方法实施例中的步骤,例如图1所示的步骤101至106。或者,所述处理器50执行所述计算机可读指令52时实现上述各装置实施例中各模块/单元的功能,例如图4所示单元401至406的功能。FIG. 5 is a schematic diagram of an electronic device according to an embodiment of the present application. As shown in FIG. 5, the electronic device 5 of this embodiment includes a processor 50, a memory 51, and computer readable instructions 52 stored in the memory 51 and operable on the processor 50, such as business data. Processing program. The processor 50 executes the computer readable instructions 52 to implement the steps in the foregoing method for processing various service data, such as steps 101 to 106 shown in FIG. Alternatively, the processor 50, when executing the computer readable instructions 52, implements the functions of the various modules/units in the various apparatus embodiments described above, such as the functions of the units 401 through 406 shown in FIG.
示例性的,所述计算机可读指令52可以被分割成一个或多个模块/单元,所述一个或者多个模块/单元被存储在所述存储器51中,并由所述处理器50执行,以完成本申请。所述一个或多个模块/单元可以是能够完成特定功能的一系列计算机可读指令指令段,该指令段用于描述所述计算机可读指令52在所述电子设备5中的执行过程。Illustratively, the computer readable instructions 52 may be partitioned into one or more modules/units that are stored in the memory 51 and executed by the processor 50, To complete this application. The one or more modules/units may be a series of computer readable instruction instructions segments capable of performing a particular function, the instruction segments being used to describe the execution of the computer readable instructions 52 in the electronic device 5.
所述电子设备5可以是桌上型计算机、笔记本、掌上电脑及云端服务器等计算设备。所述电子设备可包括,但不仅限于,处理器50、存储器51。本领域技术人员可以理解,图5仅仅是电子设备5的示例,并不构成对电子设备5的限定,可以包括比图示更多或更少的部件,或者组合某些部件,或者不同的部件,例如所述电子设备还可以包括输入输出设备、网络接入设备、总线等。The electronic device 5 may be a computing device such as a desktop computer, a notebook, a palmtop computer, and a cloud server. The electronic device may include, but is not limited to, a processor 50, a memory 51. It will be understood by those skilled in the art that FIG. 5 is only an example of the electronic device 5, and does not constitute a limitation on the electronic device 5, and may include more or less components than those illustrated, or combine some components, or different components. For example, the electronic device may further include an input and output device, a network access device, a bus, and the like.
所称处理器50可以是中央处理单元(Central Processing Unit,CPU),还可以是其他通用处理器、数字信号处理器 (Digital Signal Processor,DSP)、专用集成电路 (Application Specific Integrated Circuit,ASIC)、现成可编程门阵列 (Field-Programmable Gate Array,FPGA) 或者其他可编程逻辑器件、分立门或者晶体管逻辑器件、分立硬件组件等。通用处理器可以是微处理器或者该处理器也可以是任何常规的处理器等。The so-called processor 50 can be a central processing unit (Central Processing Unit, CPU), can also be other general-purpose processors, digital signal processors (DSP), application specific integrated circuits (Application Specific Integrated Circuit (ASIC), Field-Programmable Gate Array (FPGA) or other programmable logic device, discrete gate or transistor logic device, discrete hardware components, etc. The general purpose processor may be a microprocessor or the processor or any conventional processor or the like.
所述存储器51可以是所述电子设备5的内部存储单元,例如电子设备5的硬盘或内存。所述存储器51也可以是所述电子设备5的外部存储设备,例如所述电子设备5上配备的插接式硬盘,智能存储卡(Smart Media Card, SMC),安全数字(Secure Digital, SD)卡,闪存卡(Flash Card)等。进一步地,所述存储器51还可以既包括所述电子设备5的内部存储单元也包括外部存储设备。所述存储器51用于存储所述计算机可读指令以及所述电子设备所需的其他程序和数据。所述存储器51还可以用于暂时地存储已经输出或者将要输出的数据。The memory 51 may be an internal storage unit of the electronic device 5, such as a hard disk or a memory of the electronic device 5. The memory 51 may also be an external storage device of the electronic device 5, such as a plug-in hard disk equipped on the electronic device 5, a smart memory card (SMC), and a secure digital (SD). Card, flash card (Flash Card) and so on. Further, the memory 51 may also include both an internal storage unit of the electronic device 5 and an external storage device. The memory 51 is configured to store the computer readable instructions and other programs and data required by the electronic device. The memory 51 can also be used to temporarily store data that has been output or is about to be output.
所属领域的技术人员可以清楚地了解到,为了描述的方便和简洁,仅以上述各功能单元、模块的划分进行举例说明,实际应用中,可以根据需要而将上述功能分配由不同的功能单元、模块完成,即将所述装置的内部结构划分成不同的功能单元或模块,以完成以上描述的全部或者部分功能。实施例中的各功能单元、模块可以集成在一个处理单元中,也可以是各个单元单独物理存在,也可以两个或两个以上单元集成在一个单元中,上述集成的单元既可以采用硬件的形式实现,也可以采用软件功能单元的形式实现。另外,各功能单元、模块的具体名称也只是为了便于相互区分,并不用于限制本申请的保护范围。上述系统中单元、模块的具体工作过程,可以参考前述方法实施例中的对应过程,在此不再赘述。It will be apparent to those skilled in the art that, for convenience and brevity of description, only the division of each functional unit and module described above is exemplified. In practical applications, the above functions may be assigned to different functional units as needed. The module is completed by dividing the internal structure of the device into different functional units or modules to perform all or part of the functions described above. Each functional unit and module in the embodiment may be integrated into one processing unit, or each unit may exist physically separately, or two or more units may be integrated into one unit, and the integrated unit may be hardware. Formal implementation can also be implemented in the form of software functional units. In addition, the specific names of the respective functional units and modules are only for the purpose of facilitating mutual differentiation, and are not intended to limit the scope of protection of the present application. For the specific working process of the unit and the module in the foregoing system, reference may be made to the corresponding process in the foregoing method embodiment, and details are not described herein again.
在上述实施例中,对各个实施例的描述都各有侧重,某个实施例中没有详述或记载的部分,可以参见其它实施例的相关描述。In the above embodiments, the descriptions of the various embodiments are different, and the parts that are not detailed or described in a certain embodiment can be referred to the related descriptions of other embodiments.
所述作为分离部件说明的单元可以是或者也可以不是物理上分开的,作为单元显示的部件可以是或者也可以不是物理单元,即可以位于一个地方,或者也可以分布到多个网络单元上。可以根据实际的需要选择其中的部分或者全部单元来实现本实施例方案的目的。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, may be located in one place, or may be distributed to multiple network units. Some or all of the units may be selected according to actual needs to achieve the purpose of the solution of the embodiment.
所述集成的模块/单元如果以软件功能单元的形式实现并作为独立的产品销售或使用时,可以存储在一个计算机可读取存储介质中。基于这样的理解,本申请实现上述实施例方法中的全部或部分流程,也可以通过计算机可读指令来指令相关的硬件来完成,所述的计算机可读指令可存储于一计算机可读存储介质中。The integrated modules/units, if implemented in the form of software functional units and sold or used as separate products, may be stored in a computer readable storage medium. Based on such understanding, the present application implements all or part of the processes in the foregoing embodiments, and may also be implemented by computer readable instructions, which may be stored in a computer readable storage medium. in.
以上所述实施例仅用以说明本申请的技术方案,而非对其限制;尽管参照前述实施例对本申请进行了详细的说明,本领域的普通技术人员应当理解:其依然可以对前述各实施例所记载的技术方案进行修改,或者对其中部分技术特征进行等同替换;而这些修改或者替换,并不使相应技术方案的本质脱离本申请各实施例技术方案的精神和范围,均应包含在本申请的保护范围之内。The above-mentioned embodiments are only used to explain the technical solutions of the present application, and are not limited thereto; although the present application has been described in detail with reference to the foregoing embodiments, those skilled in the art should understand that they can still implement the foregoing embodiments. The technical solutions described in the examples are modified or equivalently replaced with some of the technical features; and the modifications or substitutions do not deviate from the spirit and scope of the technical solutions of the embodiments of the present application, and should be included in Within the scope of protection of this application.

Claims (20)

  1. 一种业务数据的处理方法,其特征在于,包括:A method for processing business data, comprising:
    接收用户输入的请求数据;Receiving request data input by a user;
    解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;Parsing the deployment descriptor in the request data to determine a servlet interface requested by the user, and loading the application.xml file through the servlet interface;
    基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;Retrieving a script component in one or more component libraries based on the application.xml file to generate a service component;
    通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;Processing the request data by the service component, and controlling whether the distributed middleware zookeeper monitors whether a processing error occurs;
    若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;If a processing error occurs, locate an abnormal script component, and roll back the abnormal script component to update the service component, and return execution to process the request data through the service component, and control The distributed middleware zookeeper monitors whether there is a processing error step;
    若未出现处理错误,则输出所述请求数据的处理结果。If no processing error occurs, the processing result of the request data is output.
  2. 如权利要求1所述的业务数据的处理方法,其特征在于,在所述接收用户输入的请求数据之前,还包括:The method for processing service data according to claim 1, wherein before the receiving the request data input by the user, the method further comprises:
    将通过Groovy语言编写的脚本组件在命名后存储于所述组件库中,并在.library文件中注册所述脚本组件的组件规范,所述组件规范用于定义所述脚本组件的路径;a script component written in the Groovy language is stored in the component library after naming, and a component specification of the script component is registered in a .library file, the component specification is used to define a path of the script component;
    在所述application.xml文件中注册所述组件库的配置信息。Registering the configuration information of the component library in the application.xml file.
  3. 如权利要求2所述的业务数据的处理方法,其特征在于,还包括:The method for processing service data according to claim 2, further comprising:
    在接收到脚本组件变更通知后,启动更新线程,在所述组件库中加载更新后的脚本组件,并更新缓存。After receiving the script component change notification, the update thread is started, the updated script component is loaded in the component library, and the cache is updated.
  4. 如权利要求1所述的业务数据的处理方法,其特征在于,所述控制分布式中间件zookeeper监控是否出现处理错误,包括:The method for processing service data according to claim 1, wherein the controlling the distributed middleware zookeeper monitors whether a processing error occurs, including:
    为所述服务组件中的每个脚本组件生成一个路径节点,并将各个所述路径节点注册至所述分布式中间件zookeeper中;Generating a path node for each script component in the service component, and registering each of the path nodes in the distributed middleware zookeeper;
    通过所述分布式中间件zookeeper接收含有所述脚本组件的执行状态的通知,并将所述执行状态同步至与所述脚本组件对应的所述路径节点中;Receiving, by the distributed middleware zookeeper, a notification containing an execution status of the script component, and synchronizing the execution state to the path node corresponding to the script component;
    订阅所述分布式中间件zookeeper中各个路径节点缓存的事件,所述事件包括所述脚本组件的执行状态,以监控是否出现处理错误。An event of each path node cache in the distributed middleware zookeeper is subscribed, and the event includes an execution status of the script component to monitor whether a processing error occurs.
  5. 如权利要求1所述的业务数据的处理方法,其特征在于,还包括:The method for processing service data according to claim 1, further comprising:
    若出现处理错误,则生成异常堆栈日志,并将所述异常堆栈日志同步至日志平台。If a processing error occurs, an exception stack log is generated and the exception stack log is synchronized to the logging platform.
    若未出现处理错误,则控制用户交互界面将请求数据的处理结果展示给所述用户。If no processing error occurs, the control user interaction interface presents the processing result of the request data to the user.
  6. 一种业务数据的处理装置,其特征在于,包括:A device for processing business data, comprising:
    接收模块,用于接收用户输入的请求数据;a receiving module, configured to receive request data input by a user;
    解析模块,用于解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;a parsing module, configured to parse a deployment descriptor in the request data, to determine a servlet interface requested by the user, and load an application.xml file through the servlet interface;
    调取模块,用于基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;a calling module, configured to retrieve a script component in one or more component libraries based on the application.xml file, and generate a service component;
    监控模块,用于通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;a monitoring module, configured to process the request data by using the service component, and control whether the distributed middleware zookeeper monitors whether a processing error occurs;
    第一执行模块,用于若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;a first execution module, configured to locate an abnormal script component if a processing error occurs, and roll back the abnormal script component to update the service component, and return execution to the service component Requesting data for processing and controlling the distributed middleware zookeeper to monitor whether there is a processing error step;
    第二执行模块,用于若未出现处理错误,则输出所述请求数据的处理结果。And a second execution module, configured to output a processing result of the request data if a processing error does not occur.
  7. 根据权利要求6所述的业务数据的处理装置,其特征在于,在所述接收用户输入的请求数据之前,还包括:The apparatus for processing service data according to claim 6, wherein before the receiving the request data input by the user, the method further comprises:
    将通过Groovy语言编写的脚本组件在命名后存储于所述组件库中,并在.library文件中注册所述脚本组件的组件规范,所述组件规范用于定义所述脚本组件的路径;a script component written in the Groovy language is stored in the component library after naming, and a component specification of the script component is registered in a .library file, the component specification is used to define a path of the script component;
    在所述application.xml文件中注册所述组件库的配置信息。Registering the configuration information of the component library in the application.xml file.
  8. 根据权利要求7所述的业务数据的处理装置,其特征在于,还包括:The apparatus for processing business data according to claim 7, further comprising:
    在接收到脚本组件变更通知后,启动更新线程,在所述组件库中加载更新后的脚本组件,并更新缓存。After receiving the script component change notification, the update thread is started, the updated script component is loaded in the component library, and the cache is updated.
  9. 根据权利要求6所述的业务数据的处理装置,其特征在于,所述控制分布式中间件zookeeper监控是否出现处理错误,包括:The apparatus for processing service data according to claim 6, wherein the controlling the distributed middleware zookeeper monitors whether a processing error occurs, including:
    为所述服务组件中的每个脚本组件生成一个路径节点,并将各个所述路径节点注册至所述分布式中间件zookeeper中;Generating a path node for each script component in the service component, and registering each of the path nodes in the distributed middleware zookeeper;
    通过所述分布式中间件zookeeper接收含有所述脚本组件的执行状态的通知,并将所述执行状态同步至与所述脚本组件对应的所述路径节点中;Receiving, by the distributed middleware zookeeper, a notification containing an execution status of the script component, and synchronizing the execution state to the path node corresponding to the script component;
    订阅所述分布式中间件zookeeper中各个路径节点缓存的事件,所述事件包括所述脚本组件的执行状态,以监控是否出现处理错误。An event of each path node cache in the distributed middleware zookeeper is subscribed, and the event includes an execution status of the script component to monitor whether a processing error occurs.
  10. 根据权利要求6所述的业务数据的处理装置,其特征在于,还包括:The apparatus for processing business data according to claim 6, further comprising:
    若出现处理错误,则生成异常堆栈日志,并将所述异常堆栈日志同步至日志平台。If a processing error occurs, an exception stack log is generated and the exception stack log is synchronized to the logging platform.
    若未出现处理错误,则控制用户交互界面将请求数据的处理结果展示给所述用户。If no processing error occurs, the control user interaction interface presents the processing result of the request data to the user.
  11. 一种电子设备,其特征在于,包括存储器以及处理器,所述存储器中存储有可在所述处理器上运行的计算机可读指令,所述处理器执行所述计算机可读指令时实现如下步骤:An electronic device, comprising: a memory and a processor, wherein the memory stores computer readable instructions executable on the processor, and the processor implements the following steps when the computer readable instructions are executed :
    接收用户输入的请求数据;Receiving request data input by a user;
    解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;Parsing the deployment descriptor in the request data to determine a servlet interface requested by the user, and loading the application.xml file through the servlet interface;
    基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;Retrieving a script component in one or more component libraries based on the application.xml file to generate a service component;
    通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;Processing the request data by the service component, and controlling whether the distributed middleware zookeeper monitors whether a processing error occurs;
    若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;If a processing error occurs, locate an abnormal script component, and roll back the abnormal script component to update the service component, and return execution to process the request data through the service component, and control The distributed middleware zookeeper monitors whether there is a processing error step;
    若未出现处理错误,则输出所述请求数据的处理结果。If no processing error occurs, the processing result of the request data is output.
  12. 根据权利要求11所述的电子设备,其特征在于,在所述接收用户输入的请求数据之前,还包括:The electronic device according to claim 11, wherein before the receiving the request data input by the user, the method further comprises:
    将通过Groovy语言编写的脚本组件在命名后存储于所述组件库中,并在.library文件中注册所述脚本组件的组件规范,所述组件规范用于定义所述脚本组件的路径;a script component written in the Groovy language is stored in the component library after naming, and a component specification of the script component is registered in a .library file, the component specification is used to define a path of the script component;
    在所述application.xml文件中注册所述组件库的配置信息。Registering the configuration information of the component library in the application.xml file.
  13. 根据权利要求12所述的电子设备,其特征在于,还包括:The electronic device according to claim 12, further comprising:
    在接收到脚本组件变更通知后,启动更新线程,在所述组件库中加载更新后的脚本组件,并更新缓存。After receiving the script component change notification, the update thread is started, the updated script component is loaded in the component library, and the cache is updated.
  14. 根据权利要求11所述的电子设备,其特征在于,所述控制分布式中间件zookeeper监控是否出现处理错误,包括:The electronic device according to claim 11, wherein the controlling distributed middleware zookeeper monitors whether a processing error occurs, including:
    为所述服务组件中的每个脚本组件生成一个路径节点,并将各个所述路径节点注册至所述分布式中间件zookeeper中;Generating a path node for each script component in the service component, and registering each of the path nodes in the distributed middleware zookeeper;
    通过所述分布式中间件zookeeper接收含有所述脚本组件的执行状态的通知,并将所述执行状态同步至与所述脚本组件对应的所述路径节点中;Receiving, by the distributed middleware zookeeper, a notification containing an execution status of the script component, and synchronizing the execution state to the path node corresponding to the script component;
    订阅所述分布式中间件zookeeper中各个路径节点缓存的事件,所述事件包括所述脚本组件的执行状态,以监控是否出现处理错误。An event of each path node cache in the distributed middleware zookeeper is subscribed, and the event includes an execution status of the script component to monitor whether a processing error occurs.
  15. 根据权利要求11所述的电子设备,其特征在于,还包括:The electronic device according to claim 11, further comprising:
    若出现处理错误,则生成异常堆栈日志,并将所述异常堆栈日志同步至日志平台。If a processing error occurs, an exception stack log is generated and the exception stack log is synchronized to the logging platform.
    若未出现处理错误,则控制用户交互界面将请求数据的处理结果展示给所述用户。If no processing error occurs, the control user interaction interface presents the processing result of the request data to the user.
  16. 一种计算机可读存储介质,所述计算机可读存储介质存储有计算机可读指令,其特征在于,所述计算机可读指令被至少一个处理器执行时实现如下步骤:A computer readable storage medium storing computer readable instructions, wherein the computer readable instructions, when executed by at least one processor, implement the following steps:
    接收用户输入的请求数据;Receiving request data input by a user;
    解析所述请求数据中的部署描述符,以确定用户请求访问的servlet接口,并通过所述servlet接口加载application.xml文件;Parsing the deployment descriptor in the request data to determine a servlet interface requested by the user, and loading the application.xml file through the servlet interface;
    基于所述application.xml文件调取一个以上的组件库中的脚本组件,生成服务组件;Retrieving a script component in one or more component libraries based on the application.xml file to generate a service component;
    通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误;Processing the request data by the service component, and controlling whether the distributed middleware zookeeper monitors whether a processing error occurs;
    若出现处理错误,则定位出异常的脚本组件,并对所述异常的脚本组件进行回滚,以更新所述服务组件,并返回执行通过所述服务组件对所述请求数据进行处理,并控制分布式中间件zookeeper监控是否出现处理错误的步骤;If a processing error occurs, locate an abnormal script component, and roll back the abnormal script component to update the service component, and return execution to process the request data through the service component, and control The distributed middleware zookeeper monitors whether there is a processing error step;
    若未出现处理错误,则输出所述请求数据的处理结果。If no processing error occurs, the processing result of the request data is output.
  17. 如权利要求16所述的计算机可读存储介质,其特征在于,在所述接收用户输入的请求数据之前,还包括:The computer readable storage medium according to claim 16, wherein before the receiving the request data input by the user, the method further comprises:
    将通过Groovy语言编写的脚本组件在命名后存储于所述组件库中,并在.library文件中注册所述脚本组件的组件规范,所述组件规范用于定义所述脚本组件的路径;a script component written in the Groovy language is stored in the component library after naming, and a component specification of the script component is registered in a .library file, the component specification is used to define a path of the script component;
    在所述application.xml文件中注册所述组件库的配置信息。Registering the configuration information of the component library in the application.xml file.
  18. 如权利要求17所述的计算机可读存储介质,其特征在于,还包括:The computer readable storage medium of claim 17, further comprising:
    在接收到脚本组件变更通知后,启动更新线程,在所述组件库中加载更新后的脚本组件,并更新缓存。After receiving the script component change notification, the update thread is started, the updated script component is loaded in the component library, and the cache is updated.
  19. 如权利要求16所述的计算机可读存储介质,其特征在于,所述控制分布式中间件zookeeper监控是否出现处理错误,包括:The computer readable storage medium of claim 16, wherein the controlling the distributed middleware zookeeper monitors whether a processing error occurs, including:
    为所述服务组件中的每个脚本组件生成一个路径节点,并将各个所述路径节点注册至所述分布式中间件zookeeper中;Generating a path node for each script component in the service component, and registering each of the path nodes in the distributed middleware zookeeper;
    通过所述分布式中间件zookeeper接收含有所述脚本组件的执行状态的通知,并将所述执行状态同步至与所述脚本组件对应的所述路径节点中;Receiving, by the distributed middleware zookeeper, a notification containing an execution status of the script component, and synchronizing the execution state to the path node corresponding to the script component;
    订阅所述分布式中间件zookeeper中各个路径节点缓存的事件,所述事件包括所述脚本组件的执行状态,以监控是否出现处理错误。An event of each path node cache in the distributed middleware zookeeper is subscribed, and the event includes an execution status of the script component to monitor whether a processing error occurs.
  20. 如权利要求16所述的计算机可读存储介质,其特征在于,还包括:The computer readable storage medium of claim 16 further comprising:
    若出现处理错误,则生成异常堆栈日志,并将所述异常堆栈日志同步至日志平台。If a processing error occurs, an exception stack log is generated and the exception stack log is synchronized to the logging platform.
    若未出现处理错误,则控制用户交互界面将请求数据的处理结果展示给所述用户。If no processing error occurs, the control user interaction interface presents the processing result of the request data to the user.
PCT/CN2018/097314 2018-05-14 2018-07-27 Service data processing method and apparatus, electronic device and medium WO2019218470A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201810456930.6 2018-05-14
CN201810456930.6A CN108664289B (en) 2018-05-14 2018-05-14 Service data processing method and terminal equipment

Publications (1)

Publication Number Publication Date
WO2019218470A1 true WO2019218470A1 (en) 2019-11-21

Family

ID=63779389

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2018/097314 WO2019218470A1 (en) 2018-05-14 2018-07-27 Service data processing method and apparatus, electronic device and medium

Country Status (2)

Country Link
CN (1) CN108664289B (en)
WO (1) WO2019218470A1 (en)

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109447443A (en) * 2018-10-18 2019-03-08 阳光人寿保险股份有限公司 Index calculating method and device
CN109597661B (en) * 2018-10-26 2021-10-22 创新先进技术有限公司 Service function configuration method and device
CN111045695A (en) * 2019-12-15 2020-04-21 北京浪潮数据技术有限公司 WebLogic middleware deployment device, method, equipment and medium
CN111400294B (en) * 2020-03-12 2023-08-01 时时同云科技(成都)有限责任公司 Data anomaly monitoring method, device and system
CN112631797A (en) * 2020-12-18 2021-04-09 京东数字科技控股股份有限公司 Method and device for configuring service system

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2005055549A1 (en) * 2003-12-01 2005-06-16 France Telecom System for providing services in response to a communications session message
CN101658011B (en) * 2008-02-05 2013-11-06 华为技术有限公司 A deploying method, a SIP service processing method and the device

Family Cites Families (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7159224B2 (en) * 2002-04-09 2007-01-02 Sun Microsystems, Inc. Method, system, and articles of manufacture for providing a servlet container based web service endpoint
CA2449534A1 (en) * 2003-11-14 2005-05-14 Ibm Canada Limited - Ibm Canada Limitee On-demand software module deployment
US7770151B2 (en) * 2005-04-07 2010-08-03 International Business Machines Corporation Automatic generation of solution deployment descriptors
CN100394726C (en) * 2005-06-30 2008-06-11 西安交通大学 Method for raising reliability of software system based on strucural member
US8954568B2 (en) * 2011-07-21 2015-02-10 Yahoo! Inc. Method and system for building an elastic cloud web server farm
CN103927174A (en) * 2014-04-17 2014-07-16 北京视博数字电视科技有限公司 Service processing method and device
US20160314471A1 (en) * 2015-04-24 2016-10-27 Fmr Llc Aberrant and Diminished Activity Detector Apparatuses, Methods and Systems
WO2017096598A1 (en) * 2015-12-10 2017-06-15 深圳市大疆创新科技有限公司 Unmanned aerial vehicle, and state monitoring method, state monitoring system and state monitoring device thereof
CN106408793B (en) * 2016-10-11 2019-04-23 深圳市紫金支点技术股份有限公司 A kind of Service Component sharing method and system suitable for ATM business
CN106790455B (en) * 2016-12-08 2019-07-26 中国科学院软件研究所 A kind of distributed cloud management system and method based on mixed mode

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2005055549A1 (en) * 2003-12-01 2005-06-16 France Telecom System for providing services in response to a communications session message
CN101658011B (en) * 2008-02-05 2013-11-06 华为技术有限公司 A deploying method, a SIP service processing method and the device

Also Published As

Publication number Publication date
CN108664289B (en) 2021-05-28
CN108664289A (en) 2018-10-16

Similar Documents

Publication Publication Date Title
WO2019218470A1 (en) Service data processing method and apparatus, electronic device and medium
US9749445B2 (en) System and method for updating service information for across-domain messaging in a transactional middleware machine environment
US9348709B2 (en) Managing nodes in a distributed computing environment
WO2018045753A1 (en) Method and device for distributed graph computation
US11429353B1 (en) Dynamic service provisioning using templatized infrastructure resources
US11461091B2 (en) System and method for creating or updating tenant artifacts by a multi-tenant cloud service
US11848980B2 (en) Distributed pipeline configuration in a distributed computing system
US20220038367A1 (en) System and method of suppressing inbound payload to an integration flow of an orchestration based application integration
CN114189525B (en) Service request method and device and electronic equipment
WO2022083512A1 (en) Information sharing method, apparatus and server, and storage medium
WO2020001162A1 (en) Container management method, apparatus, and device
US20200341994A1 (en) Systems and methods for dynamic creation of schemas
US11231979B2 (en) Method and system for generating an application programming interface based on declarative schemas for individual services
EP4130991A2 (en) Methods and systems for remote configuration of software applications
US20240028663A1 (en) Web site generation based on streams of data records
US9092292B2 (en) Shared application binary storage
US9411555B2 (en) Systems and methods for creating context sensitive graph topologies based on multidimensional context information
US20220398188A1 (en) Testing automation for open standard cloud services applications
US10701009B1 (en) Message exchange filtering
US8918451B2 (en) System and method for providing service component architecture (SCA) data transformation
US9298381B2 (en) Data integrity monitoring among sysplexes with a shared direct access storage device (DASD)
US20230350697A1 (en) Service framework for developing application services in a dependency controlled software stack
US11381662B2 (en) Transition of business-object based application architecture via dynamic feature check
Petrauskas et al. Asynchronous client-side coordination of cluster service sessions
RIBEIRO SAFE API EVOLUTION IN A MICROSERVICE ARCHITECTURE WITH A PLUGGABLE AND TRANSACTIONLESS SOLUTION

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

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

Country of ref document: EP

Kind code of ref document: A1