Hi,
in below code snippet:
<bean id="txManager" class="org.springframework.transaction.jta.JtaTransactionManager"/>
we donot need to specify any datasource,then how does...
Type: Posts; User: mohd.zaheen@gmail.com; Keyword(s):
Hi,
in below code snippet:
<bean id="txManager" class="org.springframework.transaction.jta.JtaTransactionManager"/>
we donot need to specify any datasource,then how does...
Thanks Marten for your quick reply,
Is there any way we can use custom config file?or it is a bug.
Hi,
My custom spring config file is not working as specified in ra.xml(below):
<?xml version="1.0" encoding="UTF-8"?>
<connector xmlns="http://java.sun.com/xml/ns/j2ee"
...
We have a typical situation.
Two java service components are being developed in parallel.
Lets say A and B. A is JMS application that picks up message from queue and does some business rules...
Hi,
We have a typical situation.
Two java service components are being developed in parallel.
Lets say A and B. A is JMS application that picks up message from queue and does some business...
Hi,
I am having problem in wiring bean using @Inject while creating instance via new operator.
Class Test{
A a=new A(2,3);
}
Class A{
Thanks Marten for your reply.But can you plz clarify on which constructor can you plz write down syntax of that constructor.
Hi,
I want to use @Inject of JSR 330,my requirment is given below as an example.
public class A{
//Step 1
@Inject
B b;
}
Hi,
I want to use @Inject of JSR 330,my requirment is given below as an example.
public class A{
//Step 1
@Inject
B b;
}
Hi,I am new in JDBC Abstraction Framework of Spring as well as in Spring.The mapRow(ResultSet rs,int rowNum) returns an Object means a single row,so can anyone explain how does we can get the...
Thanks a lot DaveyS really very helpful.:):)
I am new in Spring.Can somebody have a simple example to explain (with code) how does transaction management works in Spring with hibernate support.