java - Spring @Async with App Engine? -
i attempting asynchronously call 2 separate servlets on app engine using 2 @async annotated methods. code running on app enging not using spring. it's using normal java servlet api. code calling servlets using spring.
the @async on calling methods not seem working. methods each called, , return in normal order. (method->return, method->return)
i have @async annotations on each public method.
have @enableasync annotation on class calling methods. these 2 separate classes. no static classes involved.
i'm unsure if due app engine not supporting servlet 3.0, or have not configured @async propertly.
thanks in advance!
unfortunately gae not support serlvet 3.0 spec shown on this issue.you can apparently move managed vms , use sandbox gae wont using 3.0 while.
Comments
Post a Comment