JSP SQL značky a schéma.
1 <?xml version="1.0" encoding="UTF-8"?>
2 <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
9 <welcome-file>index.jsp</welcome-file>
12 <!-- Stránka nenalezena -->
13 <error-code>404</error-code>
14 <location>/WEB-INF/chyby/404.jsp</location>
17 <!-- Interní chyba serveru -->
18 <error-code>500</error-code>
19 <location>/WEB-INF/chyby/500.jsp</location>
22 <!-- Můžeme nastavit i zvláštní chybové hlášky pro jednotlivé druhy chyb -->
23 <exception-type>java.lang.NullPointerException</exception-type>
24 <location>/WEB-INF/chyby/nullPointer.jsp</location>
26 <!-- Odkaz na DB spojení, které budeme používat -->
28 <res-ref-name>jdbc/nekurak</res-ref-name>
29 <res-type>javax.sql.DataSource</res-type>
30 <res-auth>Container</res-auth>