Changes for page Groovy Script
Last modified by Erik Bakker on 2024/09/05 13:53
From version 12.1
edited by Erik Bakker
on 2022/07/28 09:18
on 2022/07/28 09:18
Change comment:
There is no comment for this version
To version 7.1
edited by Erik Bakker
on 2022/07/26 09:05
on 2022/07/26 09:05
Change comment:
There is no comment for this version
Summary
-
Page properties (3 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 - Groovy Script1 +expert-create-your-transformations-xpath-expert - Default language
-
... ... @@ -1,1 +1,0 @@ 1 -en - Content
-
... ... @@ -1,5 +1,5 @@ 1 1 {{container}}{{container layoutStyle="columns"}}((( 2 - In alow-code platform like eMagiz,youwanttoprevent using customscripting asmuch aspossible.However,sometimesinpractice,youencountersituationsthat cannot be realizedwiththestandardlboxrovidedwithintheplatform.Asa result, we offerthe optiontouse aGroovycriptin thesesituationsto achieve thedesiredsolution. In this microlearning, we willlookatwhereyoucanuseaGroovyscript and discussthekeyconsiderations whenimplementinga Groovy scriptwithinyour model.2 +Within the crash course, we already explained XPath conceptually. In that same microlearning, we looked at some more uncomplicated cases of using XPath within your transformation. If you need to brush up on that knowledge, please check out this [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Crash Course.Crash Course Platform.crashcourse-platform-create-transformation-xpath-basic.WebHome||target="blank"]]. In the intermediate microlearning on this subject, we built upon that knowledge. Please check out this [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Intermediate Level.Create your transformations.intermediate-create-your-transformations-xpath-intermediate.WebHome||target="blank"]] if you need a refresher on that. In the [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Advanced Level.Create your transformations.advanced-create-your-transformations-xpath-advanced.WebHome||target="blank"]] that followed, we built upon that knowledge and looked at some concrete, practical examples that could be useful in your project. In this microlearning, we will wrap the concept of XPath by looking at three complex XPath alternatives that are sometimes needed when dealing with messages in eMagiz. 3 3 4 4 Should you have any questions, please get in touch with [[academy@emagiz.com>>mailto:academy@emagiz.com]]. 5 5 ... ... @@ -6,75 +6,82 @@ 6 6 == 1. Prerequisites == 7 7 8 8 * Expert knowledge of the eMagiz platform 9 +* [[XPath Basic>>doc:Main.eMagiz Academy.Microlearnings.Crash Course.Crash Course Platform.crashcourse-platform-create-transformation-xpath-basic.WebHome||target="blank"]] 10 +* [[XPath Intermediate>>doc:Main.eMagiz Academy.Microlearnings.Intermediate Level.Create your transformations.intermediate-create-your-transformations-xpath-intermediate.WebHome||target="blank"]] 11 +* [[XPath Advanced>>doc:Main.eMagiz Academy.Microlearnings.Advanced Level.Create your transformations.advanced-create-your-transformations-xpath-advanced.WebHome||target="blank"]] 9 9 13 + 10 10 == 2. Key concepts == 11 11 12 -This microlearning focuses on groovy scripts. A groovyscript is a pieceof code written in the groovylanguagethat allows you to extendthe platform's functionality beyond themere useof the components supplied viahe flow designer.16 +This microlearning focuses on very complex XPath operations. 13 13 14 -* Groovy scripts should be viewed as an extension that can be used in fringe cases, not as a standard best practice 15 -* When a groovy script becomes so complex that you are programming, you should consider alternatives to the solution 16 -* Groovy scripts can be used in a filter, transformation, and as part of a standard executor 17 -* Groovy scripts should be well documented as they are though to read for most of our community members 18 -* There is no guarantee from eMagiz that Groovy scripts within models keep working in newer versions of the platform 18 +With XPath Expert, we mean learning that XPath options are sometimes very complex but could benefit you in specific cases in your daily work. 19 19 20 - ==3. Groovyscript==20 +Some of the very complex XPath options are: 21 21 22 -In a low-code platform like eMagiz, you want to prevent using custom scripting as much as possible. However, sometimes in practice, you encounter situations that cannot be realized with the standard toolbox provided within the platform. As a result, we offer the option to use a Groovy script in these situations to achieve the desired solution. In this microlearning, we will look at where you can use a Groovy script and discuss the key considerations when implementing a Groovy script within your model. 22 +* matches 23 +* replace 24 +* tokenize 23 23 24 -== =3.1Implementationin Create===26 +== 3. XPath Expert == 25 25 26 -To implement a groovy script in Create you first need to consider what your Groovy script should do. Within the flow designer there are five components available that can handle a Groovy script. 27 - 28 -* In case you want the Groovy script to filter out messages you should implement the Groovy script in a "standard filter" component. 29 -* If you want your Groovy script to always transform your message from a certain format into another format you should consider using a "standard transformer" component. 30 -* In case you need an optional output the "standard service activator" is your friend. So for example, when you want to do some transformation and do a check whether a message can continue you can use the "standard service activator" and have an optional output. 31 -* When you want to split your message based on a Groovy script you should use the "standard splitter" 32 -* If you want to route messsages based on a Groovy script you should use the "standard router" 28 +Within the crash course, we already explained XPath conceptually. In that same microlearning, we looked at some more uncomplicated cases of using XPath within your transformation. If you need to brush up on that knowledge, please check out this [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Crash Course.Crash Course Platform.crashcourse-platform-create-transformation-xpath-basic.WebHome||target="blank"]]. In the intermediate microlearning on this subject, we built upon that knowledge. Please check out this [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Intermediate Level.Create your transformations.intermediate-create-your-transformations-xpath-intermediate.WebHome||target="blank"]] if you need a refresher on that. In the [[microlearning>>doc:Main.eMagiz Academy.Microlearnings.Advanced Level.Create your transformations.advanced-create-your-transformations-xpath-advanced.WebHome||target="blank"]] that followed, we built upon that knowledge and looked at some concrete, practical examples that could be useful in your project. In this microlearning, we will wrap the concept of XPath by looking at three complex XPath alternatives that are sometimes needed when dealing with messages in eMagiz. 33 33 34 - {{warning}}Note, that in practice wemainly seeuse cases forthe"standard serviceactivator"andthe"standard transformation".{{/warning}}30 +Some of the very complex XPath options are: 35 35 36 -[[image:Main.Images.Microlearning.WebHome@expert-data-handling-groovy-script-available-components.png]] 32 +* matches 33 +* replace 34 +* tokenize 37 37 38 - Regardlessofthe component you choose youalways needto select theoption called "Groovyscript"and reference the Groovy resource available on flow level that you want to use within the component.36 +=== 3.1 matches === 39 39 40 - [[image:Main.Images.Microlearning.WebHome@expert-data-handling-groovy-script-groovy-configuration.png]]38 +Sometimes, you want to determine whether a specific value within your payload matches a pattern. In those cases, you can use the XPath function called matches. The function will return true if the supplied string matches a given regular expression. So, for example, if you want to check whether your OrderID contains exactly seven digits and nothing else, the following XPath expression will work for your use case. 41 41 42 - {{info}}As you can see inthe help text when selecting the"resource" attribute you needto makesure that the Groovy script is uploaded within the context of your flow.{{/info}}40 +matches(OrderID,'^\d{7}$') 43 43 44 -A fteryou havethecomponentin suchawaythatthecorrectGroovyscriptiscalledyou are donewiththeconfigurationofthe componentandcantest theflow usingflow testing.42 +As a result, you will get a true or false back which you can then use as a filter or within an if-then-else construction. 45 45 46 -=== 3.2 Keyconsiderations===44 +=== 3.2 replace === 47 47 48 -* To make some groovy scripts work you need to upload (third-party) Java libraries that are not packaged on default by eMagiz 49 -* To make some groovy scripts work you need to reference Java libraries via a standard header enricher or as a dummy variable 50 -* The store consists of several groovy scripts that might be of use to you 51 -* Groovy scripts should be viewed as an extension that can be used in fringe cases, not as a standard best practice 52 -* When a groovy script becomes so complex that you are programming, you should consider alternatives to the solution 53 -* Groovy scripts can be used in a filter, transformation, and as part of a standard executor 54 -* Groovy scripts should be well documented as they are though to read for most of our community members 55 -* There is no guarantee from eMagiz that Groovy scripts within models keep working in newer versions of the platform 46 +The replace function has many similarities with the matches function. It builds on the premise of the matches function, but instead of returning a true or false, you can state with what you want to replace the matched string. In other words, this function returns a string produced from the input string by replacing any substrings that match a given regular expression with a supplied replacement string. 56 56 48 +When we apply this to our earlier example, we can state that when the OrderID contains any non-digit, we will replace this value with nothing. This will lead to the following XPath expression. 49 + 50 +replace(OrderID,'\D','') 51 + 52 +With a given input string of 12C34A567, the returned result will be 1234567. 53 + 54 +=== 3.3 tokenize === 55 + 56 +The tokenize function can split a string into multiple entries for you. This is particularly useful when you want to match an input string to a list of possible values that are valid for that string. For example, the function returns a sequence of strings constructed by splitting the input wherever a separator is found; the separator is any substring that matches a given regular expression. 57 + 58 +So, for example, when the input string for AddressID is "street,housenumber,housenumberaddition" and you want to tokenize this with the help of the separator, you could use, in this example, the comma between the values as the separator. This will lead to the following XPath expression. 59 + 60 +tokenize(AddressID,',') 61 + 62 +The given input detailed above will result in the following output: street housenumber housenumberaddition. 63 + 57 57 == 4. Assignment == 58 58 59 - TrytoimplementacomponentthatreferencesaGroovyscript andseewhether the flowcan be tested.60 -This assignment can be completed with the help of the(Academy) projectthatyouhavecreated/used in the previous assignment.66 +Check out which of the XPaths we have discussed today can be found within your project. 67 +This assignment can be completed within the (Academy) project you created/used in the previous assignment. 61 61 62 62 == 5. Key takeaways == 63 63 64 -* To make some groovy scripts work you need to upload (third-party) Java libraries that are not packaged on default by eMagiz 65 -* To make some groovy scripts work you need to reference Java libraries via a standard header enricher or as a dummy variable 66 -* The store consists of several groovy scripts that might be of use to you 67 -* Groovy scripts should be viewed as an extension that can be used in fringe cases, not as a standard best practice 68 -* When a groovy script becomes so complex that you are programming, you should consider alternatives to the solution 69 -* Groovy scripts can be used in a filter, transformation, and as part of a standard executor 70 -* Groovy scripts should be well documented as they are though to read for most of our community members 71 -* There is no guarantee from eMagiz that Groovy scripts within models keep working in newer versions of the platform 71 +Some of the very complex XPath options are: 72 72 73 +* matches 74 +* replace 75 +* tokenize 76 + 73 73 == 6. Suggested Additional Readings == 74 74 75 -If you are interested in this topic and want more information, please read the help text provided by eMagiz and read the following link: 76 -* https://www.tutorialspoint.com/groovy/index.htm 79 +If you are interested in this topic and want more information on it, please read the help text provided by eMagiz and read more information on the following links: 77 77 81 +* http://www.xsltfunctions.com/xsl/fn_matches.html 82 +* http://www.xsltfunctions.com/xsl/fn_replace.html 83 +* http://www.xsltfunctions.com/xsl/fn_tokenize.html 84 + 78 78 == 7. Silent demonstration video == 79 79 80 80 As this is more of theoretical microlearning, there is no video accompanying the microlearning.)))((({{toc/}}))){{/container}}{{/container}}