Figured out the issue.
getJdbcTemplate().query(sql, queryParams, rowmapper) is not working correctly when I pass strings into query params for "?". So, I substitued the string values directly in...
Type: Posts; User: Siva Krishna; Keyword(s):
Figured out the issue.
getJdbcTemplate().query(sql, queryParams, rowmapper) is not working correctly when I pass strings into query params for "?". So, I substitued the string values directly in...
Hello,
I'm trying to retrieve some values from DB but I'm getting error message. Can you please help me.
Here are the details.
SQL Query :
SELECT PHYS_RESR_ID, NOTE_TEXT,...
Hello,
We are using few Entity beans in our project. Our management decided to migrate all EJBs to Spring. Is there any standard/best way for this?
Please let me know.
Regards
Siva.
you can create Calendar instance like this...
<bean id="actualDate" class="java.util.Calendar" factory-method="getInstance"/>
use depends-on="b" attribute in the bean declaration of "a" as below. With this first bean "b" is created and gets injected into bean "a".
<bean id="a" class="com.siva.A" depends-on="b">
...
If I were you, I'll keep the application context files in WAR.
Hello,
I got almost similar requirement, making the schedulers as DB driven, and handled it in the following way.
I created a new UI that takes start time & interval time and saves them in DB. ...
For updating the properties you can use BeanPostProcessor.
I'm using Spring 2.5.5 and am able to set the boolean prooperty value.
Here is the example code.
<bean id="booleanTest" class="com.siva.BooleanTest">
<property name="booleanValue">...
Hello Oleksandr,
Thanks for your reply.
Actually I don't have access to DB, only DBA can create those jobs. So, I want to reschedule the jobs using Spring.
is there any way to create a...
Hello,
I'm using spring scheduler to execute Oracle PL/SQL procedures, giving the cron expression in XML file. The task is to make the scheduler time as DB driven, instead of XML. I've create a...