
WEB-INF.web.xml Maven / Gradle / Ivy
The newest version!
<?xml version='1.0' encoding='UTF-8' ?> <!-- was: <?xml version="1.0" encoding="ISO-8859-1"?> --> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <filter> <filter-name>LiftFilter</filter-name> <display-name>Lift Filter</display-name> <description>The Filter that intercepts lift calls</description> <filter-class>net.liftweb.http.LiftFilter</filter-class> <!-- We override the boot class, as discussed here: http://exploring.liftweb.net/master/index-3.html By default the boot class is bootstrap.liftweb.Boot "Your custom boot class class must subclass net.liftweb.http.Bootable and implement the boot method. The boot method will only be run once, so you can place any initialization calls for other libraries here as well." --> <init-param> <param-name>bootloader</param-name> <param-value>org.cogchar.lifter.boot.Booter</param-value> </init-param> </filter> <filter-mapping> <filter-name>LiftFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy