Hi,
I am relatively new to JBoss and am trying to get JBoss going in eclipse 3.4 and am getting the error that Andy has described, I downloaded the WTP patch you suggested but i guess my installation of WTP is a different version than the jars targeted in the patch, for example one of the patch jars is org.eclipse.wst.server.core_1.0.207.v200803080837.jar, and the version in my plugin directory is org.eclipse.wst.server.core_1.1.0.v20080530.jar, any idea's on what i can do to get it working? thank you in advance for your help!
Regards,
John
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4162519#4162519
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4162519
Imagine a process with a single node that transitions back into itself.
Initially you want it assigned to a group so someone in that group can claim it (pull).
When someone claims it in the UI you will reassign it to that individual outside of the process e.g. with calls to jbpm like
getTaskForPooled ...
taskInstance.setActorId
(sorry cant remember the exact names of the API calls)
That task will now be assigned to the individual. The problem is that once a transition is signalled in that task node the new task created will no longer be owned by that individual. Hence the need for a node to be assigned to a group initially and then assigned to "previous" afer that.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4162510#4162510
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4162510
Hi,
is there a chance to override the defined generator for the @Id?
For example if IÃÂÃÂÃÂôd like to define the @Id in a superclass and only change the value of the db-sequence to use?
For example something like this:
| @MappedSuperclass
| public class BaseEntity {
|
| @Id
| @GeneratedValue(generator="idGenerator")
| @SequenceGenerator(name = "idGenerator", sequenceName ="base_entity_id_seq")
| protected long id;
|
| ......
| }
|
| @SequenceGenerator(name = "idGenerator", sequenceName = another_id_seq")
| public class AnEntity extends BaseEntity {
|
| }
Any input is greatly appriciated
Thomas
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4162499#4162499
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4162499