It is said in Spring javadoc article about DriverManagerDataSource class, that this class is very simple and that it is recommended
to use a JNDI DataSource provided by the container. Such a
DataSourcecan be exposed as aDataSourcebean in a Spring ApplicationContext viaJndiObjectFactoryBean
The question is: how to accomplish this?
For example if I wish to have DataSource bean to access my custo mysql database, what I require then? What to write in context configuration etc?