Below are codes from my xml file
<bean id="testDao" class="myapp.TestImpl">
<property name="dataSource" ref="myDataSource" />
</bean>
<bean id="transactionManager"...
Type: Posts; User: satfaltu; Keyword(s):
Below are codes from my xml file
<bean id="testDao" class="myapp.TestImpl">
<property name="dataSource" ref="myDataSource" />
</bean>
<bean id="transactionManager"...
I am trying to use @Autowired like the following -
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"...
Thanks for your reply. It was helpful.
Is spring controller really a Servlet ? I guess the dispatcher class we define in web.xml is a servlet. But the beans we use as a controller are not Servlets.
Can anyone clarify that.
Thanks for your reply.
I have configured eventListeners to log any database operation. Within my DAO method, I am actually inserting one record (INSERT operation is getting logged correctly), then...
How to ensure more than one getHibernateTemplate().save() to be executed in one single transaction.
How to call more than one getHibernateTemplate().save() in one single transaction.
the following are the codes from different files
web.xml
<code>
<context-param>
<param-name>contextConfigLocation</param-name>...
The following are the codes from different files:
web.xml
<code>
<context-param>
<param-name>contextConfigLocation</param-name>...
Thanks for your help dawez
Hi all,
I have a ModelAttribute which contains a List<List<String>>. I want to iterate through the outer list and display the inner List in a dropdown box.
Any help is appreciated.