Hi,
try passing all the resourse's as a collection that may help you out.
try as below.
<property name="jdbc:script">
<list>
<value>"classpath:rewards/testdb/schema.sql"</value>...
Type: Posts; User: narayan_singh; Keyword(s):
Hi,
try passing all the resourse's as a collection that may help you out.
try as below.
<property name="jdbc:script">
<list>
<value>"classpath:rewards/testdb/schema.sql"</value>...
Hi,
i am using @autowired and @component to weave together my app.
now i am left with few beans which i need to inject,and these are the beans from third party code as below
<bean...
hi,
1>i am trying for spring LTW.annotation <context:load-time-weaver/> in config xml is no more there which i guess is not needed in case of spring weaving
2>i get NoClassDefError for main class...
as rightly said by pgrimard, i recently started using annotation based DI and @Autowired is the first style that came naturally...
i really liked easy of use and speed of development using...
that clarifies things more...
thanks for replies..appreciate your sharings
thanks n regards
narayan
Hi pgrimard,
this case arised, when i wanted to use my injected bean, in static method of dependent class.for that i had to declare dependency as static.
package com.mycomp.logic;
import...
Hi,
i tried using @autowired with a static class memeber and it didnt set the property as below
@Autowired
private static MyLogger myLogger;
insted of this, using @autowired with setter...
Hi,
i am trying to do spring LTW.
for this i have enabled following in config xml
<context:spring-configured/>
<context:load-time-weaver/>
<aop:aspectj-autoproxy/>
i am passing...
Hi,
i cant find your code for sending message on queue,which further will be consumed by messageListner using onMessage().
your deployed container and listner looks good but you need to write code...
Hi All,
i am using MessageListnerContainer and jmstemplate together in a flow of application
we have a seprate component to update records from our main app. for this we drop message on a local...
hi all,
i am using storedprocedures to make call to DB2 stored procedures and need to pass array as parameter for them.
please provide your suggestions on following
1>for passing array i need...
hi,
i am implementing call to stored procedure through a class and using row mapper to process returned resultsets.
i have following scenario in db2 stored proc
it returns results by querying 2...