From: fhanik Date: Thu, 6 Aug 2009 00:16:18 +0000 (+0000) Subject: Fix links X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d7072bfb4ad2f10457fe842918ca21a2d2ca3099;p=tomcat7.0 Fix links git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@801476 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/examples/jsp/async/async1.jsp b/webapps/examples/jsp/async/async1.jsp index ab3fd222e..5028f3a04 100644 --- a/webapps/examples/jsp/async/async1.jsp +++ b/webapps/examples/jsp/async/async1.jsp @@ -7,4 +7,4 @@ System.out.println("Inside Async 1"); request.getAsyncContext().complete(); } %> -Completed async request at <%=new java.sql.Date()%> \ No newline at end of file +Completed async request at <%=new java.sql.Date(System.currentTimeMillis())%> \ No newline at end of file diff --git a/webapps/examples/jsp/async/index.jsp b/webapps/examples/jsp/async/index.jsp index 16ab8e877..f79321a40 100644 --- a/webapps/examples/jsp/async/index.jsp +++ b/webapps/examples/jsp/async/index.jsp @@ -1,17 +1,17 @@ <%@page session="false"%> - +
 Use cases:
 
 1. Simple dispatch 
  - servlet does startAsync()
  - background thread calls ctx.dispatch() 
- 
+   "> Async 0 
  
 2. Simple dispatch
  - servlet does startAsync()
  - background thread calls dispatch(/path/to/jsp)
- "> Async 1 
+   "> Async 1 
  
 3. Timeout s1
  - servlet does a startAsync()
@@ -23,3 +23,4 @@ Use cases:
  - servlet does a setAsyncTimeout
  - servlet does a addAsyncListener
  - returns - waits for timeout to happen and listener invoked 
+
\ No newline at end of file