Hi all,
I have a general question about Spring when using it to develop a Java library (and not an application as such). I am sure it's pretty basic but I could not find relevant information...
Type: Posts; User: hbf; Keyword(s):
Hi all,
I have a general question about Spring when using it to develop a Java library (and not an application as such). I am sure it's pretty basic but I could not find relevant information...
And the error log:
INFO - LocalDataSourceJobStore - Removed 0 Volatile Trigger(s).
INFO - LocalDataSourceJobStore - Removed 0 Volatile Job(s).
INFO - LocalDataSourceJobStore -...
Context:
<?xml version="1.0" encoding="UTF-8"?>
<beans default-lazy-init="true"
xmlns="http://www.springframework.org/schema/beans"
xmlns:tx="http://www.springframework.org/schema/tx"...
Dear list,
I am using Db4o via Spring-Db4o and this works like a charm. Now I need to integrate background jobs with persistence and want to use Quartz for this. As Db4o is not yet available for...
Some hours later ... :)
If I run my code with a MySQL data source it works: the job scheduled in a transaction that I rollback is not executed, as expected. With HSQLDB, it does not work: the job...
I have turned on full logging using
<bean id="testService" class="org.myproject.task.test.basics.SimpleQuartzTransactionTest$TestServiceImpl">
<property name="scheduler" ref="scheduler" />...
Dear list,
I am trying to use Quartz in my Spring application under Tomcat (which does not have Container Managed Transactions).
From the documentation of LocalDataSourceJobStore,
I...
Thanks a lot for the helpful information. I'll do as you say.
Kaspar
Posta07, thanks a lot for your detailed reply! Very much appreciated.
I have come up with a similar, yet somewhat different approach which takes an existing data source bean and does not create...
Dear list,
My unit test requires a real database (HSQLDB or Derby) and not just mockup data. I want to use an in-memory database that gets initialized by my test code. For this, I need the tables...
Dear list,
I am trying to get Glassfish v3 Prelude running with Spring 2.5.6 but am having troubles configuring JTA transactions.
My goal is to create a unit test that runs an embedded version...
An insight into the "crossContext" attribute of Tomcat allowed me to
find a solution.
The deails for my particular application are documented here:
...
Dear all,
I would like to know whether it is possible to use a Spring bean from one webapp of Tomcat in another webapp of Tomcat?
More precisely, I have an installation of the Spring-based...