Findbugs でコードを分析したところ、次の警告が報告されました。
サーブレットに反映されたクロス サイト スクリプティングの脆弱性。
コードはそのようなもので、3 行目で警告がスローされます。
String tickName = request.getParameter("ticko");
PrintWriter w = response.getWriter();
w.println("Unable to perform tickonem '" + tickName +"' because no tick with that name is active!"); //this line throws warning.
それの本当の理由とそれを修正する方法は何ですか?