How do Migrate Java, Spring Project to use JNDI datasources
问题 I have a Java project that runs from the command line. It is using Spring. At the current time my project is mySQL. Use can see from the config.xml below <bean id="mysqldataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver" /> <property name="url" value="mysqldataSource.url" /> <property name="username" value="mysqldataSource.username" /> <property name="password" value="mysqldataSource.password" /> <