1
0

web.xml 530 B

123456789101112
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
  5. version="4.0">
  6. <resource-ref>
  7. <description>DB Connection</description>
  8. <res-ref-name>jdbc/edu </res-ref-name>
  9. <res-type>javax.sql.DataSource </res-type>
  10. <res-auth>Container</res-auth>
  11. </resource-ref>
  12. </web-app>