嗨我已經在servlet中創建了一個私有方法。 該方法將從post方法中調用。我的問題是,它會是線程安全的嗎?因爲它會被許多用戶通過ajax調用?在POST方法之外創建方法是servlet
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
callPrivateMethod();
}
private static void callPrivateMethod(){
}
顯示的代碼將由多個線程同時執行。如果線程安全或不依賴於您將在callPrivateMethod()中執行的操作。你在做什麼/防止什麼? –