Tomcat側對request進行分析

2021-07-11 04:53:38 字數 698 閱讀 2846

這幾天一直在調查request的請求中cookie丟失sessionid的問題,為了取得這個資訊,要瀏覽器設定這個設定那個了,一直忽略了tomcat自身就支援的requestdumpervalve 。

開啟後可以很輕鬆的得到請求中的詳細資訊。

開啟方法:

直接修改 tomcat 的server.xml,開啟 的注釋,重啟服務即可。

catalina.log中就可以看到記錄的詳細資訊。

另外tomcat預設開啟debug的log,可以參考下面的定義

org.apache.catalina.realm.level = all

org.apache.catalina.realm.useparenthandlers = true

org.apache.catalina.authenticator.level = all

org.apache.catalina.authenticator.useparenthandlers = true

org.apache.catalina.connector.level = all

org.apache.catalina.connector.useparenthandlers = true

上面對應位置要補一條記錄

1catalina.org.apache.juli.filehandler.buffersize = -1

request對介面引數進行測試模板

import requests import unittest from time import sleep class weathertest unittest.testcase def setup self pass 正常查詢長沙的天氣,斷言 def test weather changsha ...

Tomcat6 Tomcat7對比測試

本文首先簡述了tomcat7的新特性和增強功能。然後對比tomcat6做了效能測試,測試結果表明,tomcat7的在效能上沒有明顯的提公升,而主要貢獻在於servlet 3.0,記憶體檢測洩露和增強的安全特性。目前tomcat7已經發布到第34個版本 tomcat7.0.34 而tomcat6現在的...

Linux下對tomcat的命令

遠端操作linux中tomcat的命令 1.catalina.sh start 啟動tomcat 2.catalina.sh stop 關閉tomcat 3.tail f logs catalina.out 檢視後台輸出 4.ps ef grep tomcat 檢視tomcat執行狀態 5.kill...