Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • jBPM6 Developer Guide
  • Toc
  • feedback
jBPM6 Developer Guide

jBPM6 Developer Guide

By : Salatino
2 (4)
close
jBPM6 Developer Guide

jBPM6 Developer Guide

2 (4)
By: Salatino

Overview of this book

If you are a Java developer or architect who needs to have a better understanding of how Business Process Management frameworks behave in real-life implementations, this book is for you. This book assumes that you know the Java language well and are familiar with some widely used frameworks such as Hibernate. You should also know the basics of relational databases and Maven-based applications.
Table of Contents (13 chapters)
close
12
Index

Other persistence mechanisms


The KieStoreServices interface can be implemented in any way for any type of persistence you can imagine. The JPA persistence is currently the most robust implementation available, but there is also another implementation available on top of Infinispan (http://infinispan.org). Also, any other KieStoreServices implementation could be registered and used directly from the KieServices helper class by just registering the actual implementation through the following code:

ServiceRegistryImpl.getInstance().registerLocator(KieStoreServices.class, new Callable<KieStoreServices>() {
    @Override
    public KieStoreServices call() throws Exception {
        return (KieStoreServices) Class.forName(
                "path.to.my.Impl").newInstance();
    }
});

Let's take a moment to review the Infinispan persistence usage with a small code example.

Infinispan persistence

Similar to the JPA persistence provided for jBPM6, there is another experimental implementation provided...

bookmark search playlist font-size

Change the font size

margin-width

Change margin width

day-mode

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Delete Bookmark

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete