photoshop同心円の描き方
まず円を描く
ctrl+t自由変更
の時、Shift+Allを押しながら大きさを変更
2012年9月20日木曜日
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>
サーバーは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>の目的は、文字化けを防ぐのため
<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>の目的は、文字化けを防ぐのため
登録:
投稿 (Atom)