I though I had already tried this, but it turns out I hadn't been thorough enough... Reverting to version 8.2-504.jdbc3 or 8.2-504.jdbc4 of the driver did the trick. Thanks!
Type: Posts; User: Tama-Chan; Keyword(s):
I though I had already tried this, but it turns out I hadn't been thorough enough... Reverting to version 8.2-504.jdbc3 or 8.2-504.jdbc4 of the driver did the trick. Thanks!
Hi all,
I'm using Spring's JdbcTemplate (through JdbcDaoSupport) to do some operations on a table. I'm using Spring 2.5.6.SEC01 and c3p0 0.9.1.2 (and Hibernate 3.3.1.GA, but it's not involved in...
Same here; 0.8a still suffers from this issue, and 0.9 is not even published. I'll wait 'til this is sorted out and use EHCache directly until then.
Also fully agree with a poster above about the...
Hi Davide,
I'm going to take a guess here: you are using Hibernate, aren't you?
Your problem is that the session is closed after the first method is invoked; any access to an uninitialized...
For those that may be interested in the answer (which I suppose is close to 0 since this thread got no answer), I circumvented the problem by using the <s:action> tag.
Yes, it's kludgy, it takes...
Hi everyone,
I'm developing a web application using Spring 2.5 for the core, Struts 2 as MVC framework, and Tiles 2 as a templating framework.
So far it has been working well; however, I...
Hi there!
Congratulations for this release!
However I have a little problem: I'm a Maven user, so to take advantage of this new release I have updated my dependencies in my POM file. It turns...
Hi everybody,
This is an improvement proposition. On several occasions I needed to get a unique result out of a query; that is I expected to get only one result, and getting more than one would be...
You want to check that:
your certificates are valid
the CAS certificate is in your truststore (usually "$JRE/lib/security/cacerts" where $JRE is the path to your JRE ; check that this is the...
Here it is...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans SYSTEM "../spring/spring-beans.dtd">
<beans>
<bean id="attributes"...
Hi,
I had the exact same problem, and I found the solution somewhere in the forum... Anyway, here is the code that did the trick for me (you just have to put it in your Controller) :
...
You're right. After a carefull research through the forum, I found out that it was caused by missing librairies for Hibernate - sorry.
It's a pity though that Hibernate should be so imprecise in...
Hi !
I'm currently running a project with Spring & Hibernate. After a long struggle, I managed to tell Spring where to locate my mapping files. Though I keep having an error creating the...