Advertisement
Guest User

Untitled

a guest
Jul 31st, 2013
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.16 KB | None | 0 0
  1. INFO: FrameworkServlet 'springDispatcher': initialization completed in 7394 ms
  2. Jul 31, 2013 10:23:43 AM org.apache.catalina.util.LifecycleBase start
  3. INFO: The start() method was called on component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/ttmaven]] after start() had already been called. The second call will be ignored.
  4. MonitorFilter::WARNING: the monitor filter must be the first filter in the chain.
  5. Jul 31, 2013 10:24:47 AM org.springframework.web.servlet.DispatcherServlet noHandlerFound
  6. WARNING: No mapping found for HTTP request with URI [/ttmaven/] in DispatcherServlet with name 'springDispatcher'
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. <?xml version="1.0" encoding="UTF-8"?>
  15. <web-app version="3.0" 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_3_0.xsd">
  16.     <filter>
  17.         <filter-name>springSecurityFilterChain</filter-name>
  18.         <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
  19.     </filter>
  20.  
  21.     <filter-mapping>
  22.         <filter-name>springSecurityFilterChain</filter-name>
  23.         <url-pattern>/*</url-pattern>
  24.     </filter-mapping>
  25.    
  26.     <context-param>
  27.         <param-name>contextConfigLocation</param-name>
  28.         <param-value>
  29.             /WEB-INF/spring-security.xml
  30.             /WEB-INF/applicationContext.xml
  31.         </param-value>
  32.     </context-param>
  33.     <listener>
  34.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  35.     </listener>
  36.     <servlet>
  37.         <servlet-name>springDispatcher</servlet-name>
  38.         <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  39.         <load-on-startup>1</load-on-startup>
  40.     </servlet>
  41.     <servlet-mapping>
  42.         <servlet-name>springDispatcher</servlet-name>
  43.         <url-pattern>/*</url-pattern>
  44.     </servlet-mapping>
  45.     <session-config>
  46.         <session-timeout>
  47.             30
  48.         </session-timeout>
  49.     </session-config>
  50.     <welcome-file-list>
  51.         <welcome-file>redirect.jsp</welcome-file>
  52.     </welcome-file-list>
  53. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement