I. Configuration in the spring configuration file <bean id= "DataSource" class= "Org.springframework.jndi.JndiObjectFactoryBean" > <property Name= "Jndiname" > <value>java:comp/env/jndi/mybatis</value> </property> </bea N>
Second, the configuration of Web. XML in the project (these tags are used to establish the current application environment to the server resource mapping)
<resource-ref>
<description>jndi datasource</description> <res-ref-name>jndi/mybatis</res-ref-name> < Res-ref-type>javax.sql.datasource</res-ref-type> <res-auth>container</res-auth></ Resource-ref>
Third, in the Conf context.xml
<resource name= "Jndi/mybatis" auth= "Container" type= "Javax.sql.DataSource" driverclassname= "Com.mysql.jdbc.Driver" url= " Jdbc:mysql://localhost:3306/3dback " username= "Root" password= "123456" maxactive= " " &nbSp; maxidle= "Ten" maxwait= "10000"/>
Tomcat JNDI Settings