[JBoss JIRA] Updated: (JBPM-1210) spring configuration support
by Tom Baeyens (JIRA)
[ https://jira.jboss.org/jira/browse/JBPM-1210?page=com.atlassian.jira.plug... ]
Tom Baeyens updated JBPM-1210:
------------------------------
Priority: Minor (was: Major)
Lowered the priority as we'll be adding spring support after the first GA release. Until we have the full test suite running on spring, the spring support is in incubation mode. Which means that we encourage the community to work with it and help us complete it, but we don't have a full test suite for it.
> spring configuration support
> ----------------------------
>
> Key: JBPM-1210
> URL: https://jira.jboss.org/jira/browse/JBPM-1210
> Project: JBoss jBPM
> Issue Type: Feature Request
> Components: PVM
> Reporter: Tom Baeyens
> Assignee: Mauricio Salatino
> Priority: Minor
>
> The first goal is to create an EnvironmentFactory implementation that is based on spring configuration.
> The class to complete is org.jbpm.pvm.internal.env.SpringEnvironmentFactory
> The SpringEnvironmentFactory should relate to a spring ApplicationContext, I believe. The first thing to do is create a test that shows how a spring configuration can be used to create hibernate sessions.
> Something like this:
> static EnvironmentFactory environmentFactory = SpringEnvironmentFactory.parseResource("org/jbpm/pvm/spring/springbeans.xml");
> Environment environment = environmentFactory.openEnvironment();
> try {
> Session hibernateSession = environment.get(Session.class);
> assertNotNull(hibernateSession);
> } finally {
> environment.close();
> }
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 5 months