Spring / Spring MVC Interview questions
How do I configure JNDI DataSource in Spring Web Application?
To use the servlet container configured JNDI DataSource, we need to wire it in the spring bean configuration file and then inject it to spring beans as dependency. Once done, we can use it with JdbcTemplate to perform database operations.
< bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> < property name="jndiName" value="java:comp/env/jdbc/MySQLDB"/> < /bean>
More Related questions...