org.openbp.config.JpaProcessServerDatabaseModelConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openbp-server-jpa Show documentation
Show all versions of openbp-server-jpa Show documentation
JPA-based persistence provider for the OpenBP process engine
The newest version!
package org.openbp.config;
import org.openbp.config.modelmgr.ClassPathAndDatabaseModelMgrConfig;
import org.openbp.config.persistence.jpa.PlainJpaConfig;
import org.openbp.config.scheduler.QuartzProcessSchedulerConfig;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* Spring configuration that wires a process server running processes in memory.
*/
@Configuration
@Import(
{
PlainJpaConfig.class,
QuartzProcessSchedulerConfig.class,
ClassPathAndDatabaseModelMgrConfig.class
})
public class JpaProcessServerDatabaseModelConfig extends PersistentProcessServerConfigBase
{
}