For testing purposes I want to add several entities and later check them. To avoid nasty side effects I'm creating a container (a child of "base") and creating the entities there. To do this after...
Type: Posts; User: xmaniac; Keyword(s):
For testing purposes I want to add several entities and later check them. To avoid nasty side effects I'm creating a container (a child of "base") and creating the entities there. To do this after...
I've tried to upgrade my Roo project to the latest JDK version but I'm getting several errors. All of the same kind:
declare @type is only supported at Java 5 compliance level or above ...
Sure, you can checkout everything at http://code.google.com/p/ossmoney/
Is this still alive? Would http://code.google.com/p/ossmoney/ qualify?
After downloading 1.1.5 and starting the console I'm getting:
Invalid dependency between upstream...
In the end I created a custom rollback exception that contains the return value and I coded a new DWR converter for that kind of exceptions that unwraps the value and transfers it. Not what I was...
That's unfortunate because even though I could catch the exception in several ways the fact that there is an exception means the flow is interrupted and the return value of the method lost which was...
After some more tweaks I'm always getting an exception in some point or other. Maybe I'm just trying something that is not designed to behave as I wish. So, the first question should be: Is it...
In my last approach I was using:
PlatformTransactionManager transactionManager = getTransactionManager();
transactionManager.rollback(transactionManager.getTransaction(null));
Which was somewhat...
I need to mark a transaction as rollback only. I've tried:
PlatformTransactionManager transactionManager = getTransactionManager();
DefaultTransactionStatus tx = (..)...
It's difficult to say from your description but if you want a reference to the bean (and all its proxies) from the own bean implementation you can't. You would need a reference to the bean factory...
I'm using ClassPathScanningCandidateComponentProvider to find matching classes. In Tomcat the code works fine but in Jetty the JARs inside WEB-INF are not scanned reliably (sometimes it seems to...
Thank you again. I just keep a doubt. Even if my beans implement the Runnable interface (easy), the ExecutorService will probably instantiate a new object (not using the prototype passed as argument)...
We are using Spring MVC, WebFlow & Security so stripping Spring wouldn't be that easy.
Good news! Java 5 fortunately. Any documentation or samples available?
Regards
We are already tied to Spring so no problem there. The WorkManagerTaskExecutor may be what we need as we are deploying to WAS. We try to achieve one thing: Invoke a collection of beans (data...
Hi,
So we would like to retrieve data from different sources (WS, DB, files) and such. We have the beans working but we are unsure about invoking them in parallel. How can this be achieved?...
Thank you, very useful. I'll have to wait till 2.0.4 but it's worth it
Thanks for the answer. Could you provide a little sample? Or point me in the right direction?
Regards,
Hi,
Is it possible to package a flow (including JSP, properties, ...) inside a JAR and deploy it in several applications inside WEB-INF/lib? If so, how?
Regards
IIRC you could return null in a controller to inform dispatcher servlet that no view should be painted (the controller took care of the response itself). Unfortunately when using annotations and...
The transfer error still shows (I'll hide it with CSS prolly) but the item is available at the end of the flow. So good enough for me
Thanks. In fact, it was working (my fault!). Using a model bean instead of a Service stores the file correctly.
Regards,
I'm having troubles to get it to work. Could you post the flow or other relevant parts of the config?
Regards,
I've been working today with JSF + Portlet (WAS Portal 6.1) + Richfaces and it's working (using the JBOSS portlet bridge though). I'm going to invest some time tomorrow with SWF in the middle. I'll...
I can confirm:
JBOSS portlet bridge does not work with SWF
The double transition issue (solved removing the attribute as well)
I'm having problems with (A4J) AJAX requests as well. But for the...