AI based document processing with Camunda 8

Categories: Java

This tutorial guides you through setting up a local, privacy-compliant Intelligent Document Processing (IDP) pipeline using Camunda 8 (Desktop/Run), Ollama (for the LLM), and a Python External Task Worker (for OCR and file operations). The pipeline reads PDF documents using OCR, analyzes the content with an Agentic AI (local LLM) to determine the sender and […]

Collections and streams

Categories: Java

An interesting way to process a collection is the usage of streams. A stream provides a sequential access to the elements of the collection. Below a code snipped for a simple selection of elements of an existing collection. In this example the dataList contains just some Strings and we want to get a new list […]

Extract URL parameters via JavaScript

Categories: Java

Just a short code snippet that allows the extraction of URL parameters via JavaScript: function get_url_param( name ) { name = name.replace(/[\[]/,”\\\[“).replace(/[\]]/,”\\\]”); var regexS = “[\\?&]”+name+”=([^&#]*)”; var regex = new RegExp( regexS ); var results = regex.exec( window.location.href ); if ( results == null ) return “”; else return results[1]; }  

Liferay-Development for beginners – Part two – Creation of a development environment

Categories: Java, Liferay

The development for the Liferay portal is quite nice by using a local develop environment with Eclipse, Mysql and Liferay. Therefore you should download the following components: Liferay (http://sourceforge.net/projects/lportal/files/Liferay%20Portal/) Liferay Portal bundled with Tomcat Liferay Portal sources Liferay Portal Documentation Liferay Portal SDK Eclipse Eclipse Liferay IDE (downloadable via Eclipse Marketplace -> just search for […]

Liferay-Development for beginners – Part One – Setup your own instance

Categories: Java, Liferay

This little tutorial is written for users that are familiar with the following points, so they are not explained in detail: Working with linux (or any other OS of your choice), an editor like vi, etc. Install and configure a Mysql instance Creation of schema and assignment of user and rights Before you start with […]