What's the purpose of async-supported in web.xml?
问题 <servlet> <description>xxx</description> <servlet-name>xxx</servlet-name> <servlet-class>com.xxx.yyy</servlet-class> <async-supported>true</async-supported> </servlet> What's the purpose of async-supported in the servlet's web.xml configuration file? What case I can use it in? 回答1: Ironically, I was looking for the syntax of how to write this property in tomcat's web.xml and this is the first search item I opened from google - it's written correctly too (it works), so thanks. To answer your