文章列表
windows server2008
apache虚拟主机httpd-vhosts连接多个tomcat.如:
www.xxx.com
bbs.xxx.com
shop.xxx.com
...
..
.
以上五个二级域名对应五个tomcat app server。
如果tomcat没有非常大的计算量的话,在这个架构里面apache的压力无疑是最大的。
在并发访问的时候apahce的httpd.exe使用率很容易达到100%。
http://blog.csdn.net/aspdao/article/details/4714549
apache各种调优也不好使,最后
为Windows下的Apache加 ...
Tomcat下无论post还是get,页面设置好charset=utf-8依旧乱码。
当然首先还是tomcat的webapps下设置过滤器。
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</pa ...