[Design of JBoss Tools (dev)] - Solve AWT problem using JBossTools Release 2.0 on Mac OS X 1
by sisepago
Problem:
After creating a seam project, open the ".xhtml" made problem:
Unhandled event loop exception
Can't start the AWT because Java was started on the first thread. Make sure StartOnFirstThread is not specified in your application's Info.plist or on the command line
Solution:
edit your eclipse.ini
####### eclipse/Eclipse.app/Contents/MacOs/eclipse.ini ####################
|
| -showsplash
| org.eclipse.platform
| -vmargs
| -Xdock:icon=../Resources/Eclipse.icns
| -XstartOnFirstThread
| -Xms40m
| -Xmx512m
| -XX:MaxPermSize=256m
| -Dosgi.requiredJavaVersion=1.5
| -Dorg.eclipse.swt.internal.carbon.smallFonts
remove the -XstartOnFirstThread and set this -Djava.awt.headless=true
####### eclipse/Eclipse.app/Contents/MacOs/eclipse.ini ####################
| -showsplash
| org.eclipse.platform
| -vmargs
| -Xdock:icon=../Resources/Eclipse.icns
| -Djava.awt.headless=true
| -Xms40m
| -Xmx512m
| -XX:MaxPermSize=256m
| -Dosgi.requiredJavaVersion=1.5
| -Dorg.eclipse.swt.internal.carbon.smallFonts
and then restart your eclipse
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113729#4113729
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4113729
18 years, 3 months
[Design of JBoss jBPM] - Re: bam, the next frontier
by andyredhead
I think getting "BAM" functionality into jBPM would be excellent.
In the past, I've ended up using database views over the jbpm tables to provide a picture of how many process instances are in which state (and how long they've been there).
One thing that I think is missing from the current discussion is the idea of the "owner" of a process instance. If you know who owns a process instance it becomes easy to do queries like "show me the current state of all the process instances I own with a task that is past its due date" - which is very useful for people who are trying to manage the overall business process.
I'd also caution against assuming that historical "BI" functionality has to be included with BAM. It is my experience that for "busy" systems, BI reporting is carried out against a dedicated reporting database, so that complex and slow running queries do not "clog" the business critical transactional database. The BI reporting will be performed over a large set of data, not just data captured by jBPM (it may pull in data from other sources as well, such as webserver logs) - which means the whole BI piece goes beyond the scope of jBPM... ?
Cheers,
Andy
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113720#4113720
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4113720
18 years, 3 months