Tomcat 6.0.28以上の場合、セッションクッキー名をデフォルトのjsessionidから変えることができます。Tomcat全体で変更する場合は、$CATALINA_HOME/conf/context.xmlのContextタグにsessionCookieName属性を追加するだけです。
vi $CATALINA_HOME/conf/context.xml
<!-- <Context> -->
<Context sessionCookieName="yourCookieName">
[参考]
Apache Tomcat 7 documentation
http://tomcat.apache.org/tomcat-7.0-doc/config/context.html#Attributes
Bug 45951 - Provide support for renaming JSESSIONID
https://issues.apache.org/bugzilla/show_bug.cgi?id=45951