2012年9月14日金曜日

初回アクセス時のjsessioidを非表示にする方法

初回アクセス時のjsessioidを非表示にする方法

サーバーはjettyを使っているので、jettyの設定を変更してみました。
web.xmlの中に、下記を追加


 <context-param>
    <param-name>org.eclipse.jetty.servlet.SessionIdPathParameterName</param-name>
    <param-value>none</param-value>
  </context-param>

ちなみに、古いバージョンだと、こんな書き方だったらしい

 <context-param> <param-name>org.mortbay.jetty.servlet.SessionURL</param-name> <param-value>none</param-value> </context-param>

2012年9月7日金曜日

struts2 action type plainTextの使い方

struts.xml のファイルに

              <action class="testAction" method="test" name="test">   
         <result name="success" type="plainText">
           <param name="charSet" />UTF-8
           <param name="location" />/test.jsp
         </result>   
         </action>

actionの中に、responseでクライアントにデータを転送する
ServletActionContext.getResponse().setContentType ("text/html;charset=utf-8");
  PrintWriter out = ServletActionContext.getResponse().getWriter();
  out.print("test");
  out.flush();
  out.close();

<param name="charSet">UTF-8</param>の目的は、文字化けを防ぐのため


2012年9月6日木曜日

eclipse プロジェクトのクリーンをやってること

eclipse プロジェクトのクリーンをやってること

プロジェクトのクリーンとは?

.classファイル削除し、再コンパイルを行う。基本的には、rebuildを実行する