Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- INFO: FrameworkServlet 'springDispatcher': initialization completed in 7394 ms
- Jul 31, 2013 10:23:43 AM org.apache.catalina.util.LifecycleBase start
- 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.
- MonitorFilter::WARNING: the monitor filter must be the first filter in the chain.
- Jul 31, 2013 10:24:47 AM org.springframework.web.servlet.DispatcherServlet noHandlerFound
- WARNING: No mapping found for HTTP request with URI [/ttmaven/] in DispatcherServlet with name 'springDispatcher'
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <filter>
- <filter-name>springSecurityFilterChain</filter-name>
- <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
- </filter>
- <filter-mapping>
- <filter-name>springSecurityFilterChain</filter-name>
- <url-pattern>/*</url-pattern>
- </filter-mapping>
- <context-param>
- <param-name>contextConfigLocation</param-name>
- <param-value>
- /WEB-INF/spring-security.xml
- /WEB-INF/applicationContext.xml
- </param-value>
- </context-param>
- <listener>
- <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
- </listener>
- <servlet>
- <servlet-name>springDispatcher</servlet-name>
- <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
- <load-on-startup>1</load-on-startup>
- </servlet>
- <servlet-mapping>
- <servlet-name>springDispatcher</servlet-name>
- <url-pattern>/*</url-pattern>
- </servlet-mapping>
- <session-config>
- <session-timeout>
- 30
- </session-timeout>
- </session-config>
- <welcome-file-list>
- <welcome-file>redirect.jsp</welcome-file>
- </welcome-file-list>
- </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement