[JBoss JIRA] Created: (JBPM-2017) STRINGVALUE_ column in JBPM_VARIABLEINSTANCE table should be text, not varchar(255)
by Alejandro Guizar (JIRA)
STRINGVALUE_ column in JBPM_VARIABLEINSTANCE table should be text, not varchar(255)
-----------------------------------------------------------------------------------
Key: JBPM-2017
URL: https://jira.jboss.org/jira/browse/JBPM-2017
Project: JBoss jBPM
Issue Type: Task
Security Level: Public (Everyone can see)
Reporter: Alejandro Guizar
In JBPM-1849, Thomas enumerated the current incompatibilites against 3.2.2. One of them is:
< create table JBPM_VARIABLEINSTANCE (... STRINGVALUE_ varchar(4000) null, ...)
> create table JBPM_VARIABLEINSTANCE (... STRINGVALUE_ varchar(255) null, ...)
The new type should be text, not varchar. This is related to the fact that the STRINGVALUE_ column is shared between StringInstance.hbm.xml and HibernateStringInstance.hbm.xml, both in modules/core/src/main/resources/org/jbpm/context/exe/variableinstance/. HibernateStringinstance.hbm.xml does not specify type="text".
--
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
15 years, 10 months
[JBoss JIRA] Commented: (JBPM-1210) spring configuration support
by Andries Inze (JIRA)
[ https://jira.jboss.org/jira/browse/JBPM-1210?page=com.atlassian.jira.plug... ]
Andries Inze commented on JBPM-1210:
------------------------------------
I've uploaded the zip.
> 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
> Fix For: jBPM 4.0.x
>
> Attachments: spring-jbpm-v1.7z, spring-jbpm-v1.zip
>
>
> 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
15 years, 10 months
[JBoss JIRA] Updated: (JBPM-1210) spring configuration support
by Andries Inze (JIRA)
[ https://jira.jboss.org/jira/browse/JBPM-1210?page=com.atlassian.jira.plug... ]
Andries Inze updated JBPM-1210:
-------------------------------
Attachment: spring-jbpm-v1.zip
> 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
> Fix For: jBPM 4.0.x
>
> Attachments: spring-jbpm-v1.7z, spring-jbpm-v1.zip
>
>
> 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
15 years, 10 months