Hi,
We are having an issue with a complex stored proc. We use spring's Jdbctemplate and StoredProcedure classes.
In database, we have a stored procedure which returns multiple resultset...
Type: Posts; User: dna; Keyword(s):
Hi,
We are having an issue with a complex stored proc. We use spring's Jdbctemplate and StoredProcedure classes.
In database, we have a stored procedure which returns multiple resultset...
Bw, just realised that @Provider is a Jersey annotation and not a spring one. Is there any the two can work together?
You can separate projects and have your spring application-context.xml in the main project import the application context in the dependency as follows.
<?xml version="1.0" encoding="UTF-8"?>
...
Hi,
We have a spring-jersey app. We use spring bean profiles for configuring various environments in our application. Its works great untill we tried adding a provider. We are using...
Thank you very much. That was it. The moment I set a property in glassfish 'spring.profiles.active' with value as 'local' , the spring bean profile worked. The maven build is very straightforward as...
Thanks for the reply.
What is am doing is packaging the war to be deployed on glassfish directly running in eclipse during dev. But I would also like to cater for other profiles like QA,...
Thanks Marten for the reply. I will remember to use the <code> tag.
I have tried changing the parameter name but it didn't work. Considering using environment variables, this is something we...
I have a maven spring project. I am trying to use Bean profiles which was introduced in Spring 3.1
Basically we have a datasource bean which would change as per profile.
<beans...
Ok fixed this. For others encountering the same problem, Here is the solution . use setFunction(true) and declare the return param as the first parameter as shown below. The name of the param...
Hi,
I am using Spring 3.1.1 . I would like to konw how I can retrieve a return value from a stored proc. My stored proc returns errorcodes. I have read that this can be done using SimplejdbcCall,...