windows平台tomcat安装,简单版 Windows Executable 版,可以双击运行,根据提示点击下一步,就可完成基本配置,免去了设定环境变量等手动操作。
tomcat的server.xml文件
<Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true" URIEncoding="UTF-8"/>
URIEncoding="UTF-8" 加上这句就可以识别中文文件了,如果 URI中含有中文,可以在URIEncoding="UTF-8"之后加上useBodyEncodingForURI="true" 。
为了使其不区分大小写, 可以在其<Context >元素中增加“caseSensitive="false"”来保证该Context定义的路径下的内容不区分大小写。如果没有该配置节,可以在server.xml中添加这个配置节。
<Context path="/test" caseSensitive="false"
docBase="C:\test" reload="true" debug="0">
</Context>