- 论坛徽章:
- 0
|
参考了网上的若干文章,在Windows下配置成功了Tomcat+Mysql,为了以后配置的便利,特记录在此。诚挚感谢这些网友,我参考了他们发布或整理的那些配置文章,否则我不知道要绕多少弯路呢。这里可能摘用了您的资料,由于参考的比较多,恕不再一一列出资料来源。
Windows下Tomcat5.5.17+Mysql5.0.22的配置
一、我的电脑-->属性-->高级-->环境变量-->系统变量
1、变量名: CATALINA_HOME:变量值:e:\scorejsp\Tomcat
2、变量名:CLASSPATH 变量值:.;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar;%CATALINA_HOME%
\common\lib\servlet-api.jar;%CATALINA_HOME%\common\lib\mysql-connector-java-3.1.13-bin.jar
3、变量名:JAVA_HOME 变量值:e:\jdk156\
4、变量名:path 变量值:%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32
\Wbem;E:\scorejsp\mysql\bin;.;E:\jdk156\bin;
二、编辑E:\scorejsp\Tomcat\conf\server.xml
1、配置tomcat支持URL中文参数,只需添加Connector的URIEncoding参数即可,默认情况下该参数未被配置。
要支持URL参数支持中文,加上URIEncoding=”GBK”就行了。
2、配置新的webApp:找到host尾标记,插入新的context即可:
三、在E:\scorejsp\Tomcat\webapps\新建score目录,我们要使score取代ROOT为新的网站根目录,复制
E:\scorejsp\Tomcat\webapps\ROOT\WEB-INF\web.xml到E:\scorejsp\Tomcat\webapps\score\WEB-INF\,删除:
org.apache.jsp.index_jsp
org.apache.jsp.index_jsp
org.apache.jsp.index_jsp
/index.jsp
这一段。这个web.xml修改为:
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
app_2_4.xsd"
version="2.4">
Welcome to My Tomcat
Welcome to My Tomcat
四、添加数据库驱动
复制mysql-connector-java-3.1.13-bin.jar到E:\scorejsp\Tomcat\common\lib\
五、修改E:\scorejsp\Tomcat\conf\web.xml
1、禁止文件目录列表,把listing设置为false
default
org.apache.catalina.servlets.DefaultServlet
debug
0
listings
false
1
2、指定自己的javaEncoding
jsp
org.apache.jasper.servlet.JspServlet
fork
false
xpoweredBy
false
javaEncoding
GB18030
3
3、Tomcat中文编码问题解决方案
Tomcat 5.x解决方法:
(1)输出中文:,必要时需要转码 。jsp文件第一行要
有此句,否则浏览页面时,汉字显示乱码,需自己在浏览器中重新选择编码为gb2312,才能正常显示。
(2)获取中文:
提交表单时
[1]get:
修改server.xml,在Connector中加入URIEncoding="gb2312"
如:
或者使用useBodyEncodingForURI,使tomcat 5.x兼容tomcat 4.x
附:Tomcat 5.x与Tomcat 4.x在解析提交表单时发生了变化,Tomcat 4.x无论是post还是get,都使用
相同的编码,而Tomcat 5.x 却把get方法单独了出来.具体可查看tomcat的source code.
[2]post:
[(1)]将request.setCharacterEncoding("gb2312"); 加在jsp文件的开始。
[(2)]get方式的处理比较好,对于post方式建议用配置过滤器的方式来解决,因为这样,配置一个地方整个系
统都不用操心了。
简单说明:
编辑:E:\scorejsp\Tomcat\webapps\score\WEB-INF\web.xml 添加:
characterEncoding
SetCharacterEncodingFilter
encoding
GB2312
characterEncoding
/*
或者添加:
Set Character Encoding
SetCharacterEncodingFilter
Set Character Encoding
/*
(以上两段都可以)最终E:\scorejsp\Tomcat\webapps\score\WEB-INF\web.xml为:
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
app_2_4.xsd"
version="2.4">
Welcome to My Tomcat
Welcome to Liukf's Tomcat
characterEncoding
SetCharacterEncodingFilter
encoding
GB2312
characterEncoding
/*
Set Character Encoding
SetCharacterEncodingFilter
Set Character Encoding
/*
-->
/************************/
编译下面的java文件(c:\>javac SetCharacterEncodingFilter.java),
SetCharacterEncodingFilter.java
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.UnavailableException;
public class SetCharacterEncodingFilter implements Filter {
protected String encoding = null;
protected FilterConfig filterConfig = null;
protected boolean ignore = true;
public void destroy() {
this.encoding = null;
this.filterConfig = null;
}
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain)
throws IOException, ServletException {
if (ignore || (request.getCharacterEncoding() == null)) {
String encoding = selectEncoding(request);
if (encoding != null)
request.setCharacterEncoding(encoding);
}
chain.doFilter(request, response);
}
public void init(FilterConfig filterConfig) throws ServletException {
this.filterConfig = filterConfig;
this.encoding = filterConfig.getInitParameter("encoding");
String value = filterConfig.getInitParameter("ignore");
if (value == null)
this.ignore = true;
else if (value.equalsIgnoreCase("true"))
this.ignore = true;
else if (value.equalsIgnoreCase("yes"))
this.ignore = true;
else
this.ignore = false;
}
protected String selectEncoding(ServletRequest request) {
return (this.encoding);
}
}
或者这个也可以:
--------------------------------------------
SetCharacterEncodingFilter.java
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.UnavailableException;
/**
* Example filter that sets the character encoding to be used in parsing the
* incoming request
*/
public class SetCharacterEncodingFilter implements Filter {
/**
* Take this filter out of service.
*/
public void destroy() {
}
/**
* Select and set (if specified) the character encoding to be used to
* interpret request parameters for this request.
*/
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain)throws IOException, ServletException {
request.setCharacterEncoding("GBK");
// 传递控制到下一个过滤器
chain.doFilter(request, response);
}
public void init(FilterConfig filterConfig) throws ServletException {
}
}
////也可以把编码做为参数传递进去。
编译后的SetCharacterEncodingFilter.class放到E:\scorejsp\Tomcat\webapps\score\WEB-INF\classes下。
注意:如果添加到部署描述文件web.xml中是这样的:
characterEncoding
filters.SetCharacterEncodingFilter
encoding
GB2312
characterEncoding
/*
那么编译后的SetCharacterEncodingFilter.class应该放到E:\scorejsp\Tomcat\webapps\score\WEB-
INF\classes\filters下。
用Filter固然是好,但是要注意,若在tomcat下,特别要注意tomcat的版本,4。0。x版本这样做就OK了,但是
在5。x版本中这样还是不行,只能解决post时的中文问题,必须在配置文件server。xml中设置一下,才能解决
通过地址传递的中文,如下:
4、添加rar,iso等的mime-type映射,避免在浏览器里直接打开。
mht
text/x-mht
rar
application/octet-stream
iso
application/octet-stream
ape
application/octet-stream
rmvb
application/octet-stream
ico
image/x-icon
5、对html静态页面设置编码
htm
text/html;charset=gb2312
html
text/html;charset=gb2312
6、修改welcome-file-list,调整顺序。
index.jsp
index.html
index.htm
default.html
default.htm
default.jsp
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/1066/showart_162515.html |
|