We are having issues with OOM errors during unit test runs. The runs setup and subsequently tear down a lot of Spring contexts, and we're noticing the BeanFactory instances are not getting cleaned...
Type: Posts; User: tbecker; Keyword(s):
We are having issues with OOM errors during unit test runs. The runs setup and subsequently tear down a lot of Spring contexts, and we're noticing the BeanFactory instances are not getting cleaned...
I managed to fix this error by adding Woodstox to the CP, but now I'm getting a different exception:
java.lang.ClassCastException: com.ctc.wstx.evt.WNamespace cannot be cast to java.lang.String...
I'm trying to switch from SaajSoapMessageFactory to AxiomSoapMessageFactory to take advantage of the streaming capabilities it offers. But when I switch I'm getting a CCE when calling peek() on the...
So, I've ran into a rather nasty gotcha around Spring's support for scheduling Runnables (as opposed to org.quartz.Job instances) with Quartz via DelegatingJob. Specifically, it seems that this is...
I think you'd have to set something up to clear out all the Quartz tables before startup up the scheduler, since using a persistent job store is a requirement for clustering.
This seems more Quartz specific than Spring specific, but I suspect the problem lies in that you're setting a flag to overwrite existing *jobs* not existing *triggers*. Since you can have multiple...