{"id":743,"date":"2010-05-14T23:45:25","date_gmt":"2010-05-14T18:15:25","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=743"},"modified":"2016-12-19T15:29:20","modified_gmt":"2016-12-19T09:59:20","slug":"embedding-jbpm-4-3-in-a-grails-1-2-2-application","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/","title":{"rendered":"Embedding JBPM 4.3 in a Grails 1.2.2 Application"},"content":{"rendered":"<p>Hi,<\/p>\n<p>In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating.<\/p>\n<p>Our first step was to run a &#8220;Hello World&#8221; process from inside the grails application. On searching over the internet, I didn&#8217;t find any helpful article\/blog on integrating JBPM inside a grails application. However, there were some very good resources on integrating JBPM with a spring application. I found <a href=\"http:\/\/www.jorambarrez.be\/blog\/2009\/07\/01\/jbpm4-hello-world\/\">Joram Barrez&#8217;s Hello World Example<\/a> very helpful and was able to integrate using the following steps:<\/p>\n<ol>\n<li>Download jbpm from <a href=\"http:\/\/sourceforge.net\/projects\/jbpm\/files\/\" target=\"_blank\">here.<\/a><\/li>\n<li>Unzip the contents and copy the jbpm.jar file to the lib directory of your application.\u00a0 The exploded directory has the following files\/ folders for version 4.3 : <a href=\"\/blog\/wp-ttn-blog\/uploads\/2010\/05\/Screenshot-1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-1103\" title=\"JBPM Exploded Directory\" src=\"\/blog\/wp-ttn-blog\/uploads\/2010\/05\/Screenshot-1.png\" alt=\"Blog image\" width=\"655\" height=\"432\" \/><\/a><\/li>\n<li>Also copy the mail.jar from the jbpm installation directory (${jbpmHome}\/lib) to the lib directory of your application.<\/li>\n<li> Create a process descriptor file in the conf directory (helloWorld.jpdl.xml) with the following code<br \/>\n<blockquote>\n<pre lang=\"xml\">\r\n     <process name=\"helloWorld\" xmlns=\"http:\/\/jbpm.org\/4.0\/jpdl\">\r\n     <start>\r\n     <transition to=\"printHelloWorld\"\/>\r\n     <\/start>\r\n     \r\n     <java class=\"com.jbpm.example.Printer\" method=\"printHelloWorld\" name=\"printHelloWorld\">\r\n          <transition to=\"CheckDate\"\/>\r\n          <transition to=\"theEnd\"\/>\r\n     <\/java>\r\n     \r\n     <end name=\"theEnd\" \/>\r\n     <state name=\"CheckDate\">\r\n     <transition to=\"printHelloWorld\"\/>\r\n     <\/state>\r\n    <\/process> \r\n<\/pre>\n<\/blockquote>\n<\/li>\n<li> Create a class in src\/groovy<br \/>\n<blockquote>\n<pre lang=\"groovy\">package com.jbpm.example\r\n\r\nclass Printer {\r\n\r\n public void printHelloWorld() {\r\n   System.out.println(\"&lt;----------------&gt;\");\r\n   System.out.println(\"&amp;nbsp;&amp;nbsp; HELLO WORLD!\");\r\n   System.out.println(\"&lt;----------------&gt;\");\r\n }\r\n}\r\n<\/pre>\n<\/blockquote>\n<\/li>\n<li>Create a minimal jBPM config (jbpm.cfg.xml) in the conf directory<br \/>\n<blockquote>\n<pre lang=\"xml\">\r\n     <jbpm-configuration>\r\n     <import resource=\"jbpm.default.cfg.xml\"\/>\r\n     <import resource=\"jbpm.tx.hibernate.cfg.xml\"\/>\r\n     <import resource=\"jbpm.jpdl.cfg.xml\"\/>\r\n    <\/jbpm-configuration>\r\n<\/pre>\n<\/blockquote>\n<\/li>\n<li>Create a basic Hibernate config called conf\/jbpm.hibernate.cfg.xml(I\u2019m using MySql, Still looking for a way on how to use the grails DataSource)<br \/>\n<blockquote>\n<pre lang=\"xml\">\r\n    <?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n    <!DOCTYPE hibernate-configuration PUBLIC\r\n    \"-\/\/Hibernate\/Hibernate Configuration DTD 3.0\/\/EN\"\r\n    \"http:\/\/hibernate.sourceforge.net\/hibernate-configuration-3.0.dtd\">\r\n    <hibernate-configuration>\r\n     <session-factory>\r\n     <property name=\"hibernate.dialect\">org.hibernate.dialect.MySQL5InnoDBDialect<\/property>\r\n     <property name=\"hibernate.connection.driver_class\">com.mysql.jdbc.Driver<\/property>\r\n     <property name=\"hibernate.connection.url\">jdbc:mysql:\/\/localhost:3306\/testJbpm?autoReconnect=true<\/property>\r\n     <property name=\"hibernate.connection.username\">username<\/property>\r\n     <property name=\"hibernate.connection.password\">password<\/property>\r\n     \r\n     <property name=\"hibernate.format_sql\">true<\/property>\r\n     <property name=\"hibernate.hbm2ddl.auto\">update<\/property>\r\n     \r\n     <mapping resource=\"jbpm.repository.hbm.xml\" \/>\r\n     <mapping resource=\"jbpm.execution.hbm.xml\" \/>\r\n     <mapping resource=\"jbpm.history.hbm.xml\" \/>\r\n     <mapping resource=\"jbpm.task.hbm.xml\" \/>\r\n     <mapping resource=\"jbpm.identity.hbm.xml\" \/>\r\n     \r\n     <\/session-factory>\r\n    <\/hibernate-configuration>\r\n<\/pre>\n<\/blockquote>\n<\/li>\n<li>Create the following Spring beans is resources.groovy<br \/>\n<blockquote>\n<pre lang=\"groovy\">    \r\nspringHelper(org.jbpm.pvm.internal.processengine.SpringHelper) {\r\n        jbpmCfg = \"jbpm.cfg.xml\"\r\n}\r\nprocessEngine(springHelper:\"createProcessEngine\")\r\n<\/pre>\n<\/blockquote>\n<\/li>\n<li>Now lets deploy this process. To deploy a process we will need to inject the processEngine bean<br \/>\n<blockquote>\n<pre lang=\"groovy\"> def processEngine;<\/pre>\n<\/blockquote>\n<p>The code to deploy this process is<\/p>\n<blockquote>\n<pre lang=\"groovy\">RepositoryService repositoryService = processEngine.getRepositoryService();\r\n         repositoryService.createDeployment()\r\n                 .addResourceFromClasspath(\"helloWorld.jpdl.xml\")\r\n                 .deploy();\r\n<\/pre>\n<\/blockquote>\n<\/li>\n<li>Lets start an instance of this service :<br \/>\n<blockquote>\n<pre lang=\"groovy\">ExecutionService executionService = processEngine.getExecutionService();\r\nexecutionService.startProcessInstanceByKey(\"helloWorld\");<\/pre>\n<\/blockquote>\n<p>This will execute the printHelloWorld method of the Printer class as configured in the process description file.<\/li>\n<\/ol>\n<p>Hope you find this useful. We are still working on executing more complex processes and will keep posting our learnings.<\/p>\n<p>Your feedback and  suggestions are welcome.<\/p>\n<p>Regards<br \/>\n~~Himanshu Seth~~<\/p>\n<p>https:\/\/2thenew.xyz<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a &#8220;Hello World&#8221; process from inside the grails application. On searching over the internet, I didn&#8217;t find any helpful article\/blog on integrating [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":20,"footnotes":""},"categories":[7],"tags":[4840,240],"class_list":["post-743","post","type-post","status-publish","format-standard","hentry","category-grails","tag-grails","tag-jbpm"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a &quot;Hello World&quot; process from inside the grails application. On searching over the internet, I didn&#039;t find any helpful article\/blog on integrating\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Himanshu Seth\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a &quot;Hello World&quot; process from inside the grails application. On searching over the internet, I didn&#039;t find any helpful article\/blog on integrating\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a &quot;Hello World&quot; process from inside the grails application. On searching over the internet, I didn&#039;t find any helpful article\/blog on integrating\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#article\",\"name\":\"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog\",\"headline\":\"Embedding JBPM 4.3 in a Grails 1.2.2 Application\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/himanshu\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2010\\\/05\\\/Screenshot-1.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#articleImage\"},\"datePublished\":\"2010-05-14T23:45:25+05:30\",\"dateModified\":\"2016-12-19T15:29:20+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":10,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#webpage\"},\"articleSection\":\"Grails, Grails, JBPM\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#listItem\",\"name\":\"Embedding JBPM 4.3 in a Grails 1.2.2 Application\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#listItem\",\"position\":3,\"name\":\"Embedding JBPM 4.3 in a Grails 1.2.2 Application\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/himanshu\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/himanshu\\\/\",\"name\":\"Himanshu Seth\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/62e787d1a52267475ecb3fb2b7bea0715c3f4409cf080f75b5ee57e3bfa770a8?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Himanshu Seth\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/\",\"name\":\"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog\",\"description\":\"Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a \\\"Hello World\\\" process from inside the grails application. On searching over the internet, I didn't find any helpful article\\\/blog on integrating\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/himanshu\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/himanshu\\\/#author\"},\"datePublished\":\"2010-05-14T23:45:25+05:30\",\"dateModified\":\"2016-12-19T15:29:20+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog","description":"Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a \"Hello World\" process from inside the grails application. On searching over the internet, I didn't find any helpful article\/blog on integrating","canonical_url":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#article","name":"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog","headline":"Embedding JBPM 4.3 in a Grails 1.2.2 Application","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/himanshu\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2010\/05\/Screenshot-1.png","@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#articleImage"},"datePublished":"2010-05-14T23:45:25+05:30","dateModified":"2016-12-19T15:29:20+05:30","inLanguage":"en-US","commentCount":10,"mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#webpage"},"articleSection":"Grails, Grails, JBPM"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/2thenew.xyz\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#listItem","name":"Embedding JBPM 4.3 in a Grails 1.2.2 Application"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#listItem","position":3,"name":"Embedding JBPM 4.3 in a Grails 1.2.2 Application","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/himanshu\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/himanshu\/","name":"Himanshu Seth","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/62e787d1a52267475ecb3fb2b7bea0715c3f4409cf080f75b5ee57e3bfa770a8?s=96&d=mm&r=g","width":96,"height":96,"caption":"Himanshu Seth"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/","name":"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog","description":"Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a \"Hello World\" process from inside the grails application. On searching over the internet, I didn't find any helpful article\/blog on integrating","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/himanshu\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/himanshu\/#author"},"datePublished":"2010-05-14T23:45:25+05:30","dateModified":"2016-12-19T15:29:20+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog","og:description":"Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a &quot;Hello World&quot; process from inside the grails application. On searching over the internet, I didn't find any helpful article\/blog on integrating","og:url":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Embedding JBPM 4.3 in a Grails 1.2.2 Application | TO THE NEW Blog","twitter:description":"Hi, In one of our projects, we had a requirement for using some existing Business Process Management tool. JBPM is one such tool that we are evaluating. Our first step was to run a &quot;Hello World&quot; process from inside the grails application. On searching over the internet, I didn't find any helpful article\/blog on integrating","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"743","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 18:13:08","updated":"2024-02-29 09:29:24","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/blog\/category\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tEmbedding JBPM 4.3 in a Grails 1.2.2 Application\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Grails","link":"https:\/\/2thenew.xyz\/blog\/category\/grails\/"},{"label":"Embedding JBPM 4.3 in a Grails 1.2.2 Application","link":"https:\/\/2thenew.xyz\/blog\/embedding-jbpm-4-3-in-a-grails-1-2-2-application\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/743","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=743"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/743\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=743"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=743"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=743"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}