我发现当我发送cURL请求时,部署在tomcat上的API可以捕获cookie,尽管有tomcat警告。
curl -XPOST -H "Content-Type: application/json" --cookie "userId=64ad960c-bb7e-48dd-8191-4f31539bc2c2,accessToken=64ad960c-bb7e-48dd-8191-4f31539bc2c2" -d '{"message":"play porcupine tree"}' http://localhost:9090/nlu/convo
但是 要消除警告,必须
LegacycookieProcessor在tomcat
config(
conf/context.xml)中更新cookie处理器()
例,
cat /usr/local/apache-tomcat-8.5.12/conf/context.xml <?xml version="1.0" encoding="UTF-8"?><!-- The contents of this file will be loaded for each web application --><Context> <WatchedResource>WEB-INF/web.xml</WatchedResource> <WatchedResource>${catalina.base}/conf/web.xml</WatchedResource> <!-- <cookieProcessor className="org.apache.tomcat.util.http.Rfc6265cookieProcessor" /> --> <cookieProcessor className="org.apache.tomcat.util.http.LegacycookieProcessor" /></Context>
我以为
org.apache.tomcat.util.http.Rfc6265cookieProcessor可以,但不是
LegacycookieProcessor必须的。参考
https://tomcat.apache.org/tomcat-8.5-doc/config/cookie-
processor.html#Legacy_cookie_Processor_-
_org.apache.tomcat.util.http.LegacycookieProcessor
https://tools.ietf.org/html/rfc6265
LegacycookieProcessor对cookie规范进行严格的解释。由于浏览器的各种互 *** 作性问题,默认情况下并非所有严格的行为都启用,并且在需要时可以使用其他选项进一步放松此cookie处理器的行为。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)