当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:13:00  来源:本站整理

TOMCAT操纵本领[Java编程]

赞助商链接



  本文“TOMCAT操纵本领[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

1 增添一个虚拟目录

在server.xml文件中增添

<Context path="/oicq" docBase="myweb" debug="0" reloadable="true"></Context>

myweb阐明其相对webapps的位置,是物理存在的目录;

/oicq阐明其相对web URL的途径,是一个虚拟的途径,如:http://localhost/oicq

2 配置服务器的端口

在尺度server.xml文件的第56行,改正port = “8080” 为你所但愿利用的端口号,如:80

3 web.xml文件的设置

默许(欢送)文件的设置

在h: omcat4confweb.xml中,<welcome-file-list>与IIS中的默许文件意思相同.

<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

报错文件的设置

<error-page>
<error-code>404</error-code>
<location>/notFileFound.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.NullPointerException</exception-type>
<location>/null.jsp</location>
</error-page>

假如某文件资源没有找到,服务器要报404错误,按上述配置则会调用H: omcatwebappsROOT otFileFound.jsp.

假如履行的某个JSP文件产生NullPointException ,则会调用H: omcat4webappsROOT ull.jsp

典型的JSP错误页面应当这样写:

<%@ page isErrorPage=”true”%>
出错了:<p> 错误信息: <%= exception.getMessage() %></p>

Stack Trace is :

<font color="red">
<%
java.io.CharArrayWriter cw = new java.io.CharArrayWriter();
java.io.PrintWriter pw = new java.io.PrintWriter(cw,true);
exception.printStackTrace(pw);
out.println(cw.toString());
%>
</font>

会话超时的设置

设置session 的过期时间,单位是分钟;

<session-config>
<session-timeout>30</session-timeout>
</session-config>

过滤器的设置

<filter>
<filter-name>FilterSource</filter-name>
<filter-class>project4. FilterSource </filter-class>
</filter>
<filter-mapping>
<filter-name>FilterSource</filter-name>
<url-pattern>/WwwServlet</url-pattern>
(<url-pattern>/haha/*</url-pattern>)
</filter-mapping>

过滤:

1) 身份考证的过滤Authentication Filters

2) 日记和考核的过滤Logging and Auditing Filters

3) 图片转化的过滤Image conversion Filters

4) 数据压缩的过滤Data compression Filters

5) 加密过滤Encryption Filters

6) Tokenizing Filters

7) 资源拜候事件触发的过滤Filters that trigger resource access events XSL/T 过滤XSL/T filters

9) 内容范例的过滤Mime-type chain Filter 注意监听器的次序,如:先安全过滤,然后资源,然后内容范例等,这个次序可以自己定.


  以上是“TOMCAT操纵本领[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • centos6.0 下apache+tomcat整合笔记
  • IIS6+Tomcat7整合
  • 详解 Nginx + Tomcat HTTPS/SSL 配置办法
  • 怎样在xp下操作tomcat安置一个java web项目
  • JSP利用服务器搭建实施文档(Nginx+Tomcat)
  • <b>Linux下Tomcat集群搭建历程全记录</b>
  • Linux(Ubuntu)下Nginx安装配置及与Tomcat整合
  • Ubuntu下基于Nginx实现Tomcat集群负载均衡
  • <b>RedHat Linux 5 Tomcat 的安装及环境的配置</b>
  • <b>CentOS下Tomcat 5.5 与 jdk1.6安装</b>
  • <b>Linux下配置Nginx + 双Tomcat负载均衡</b>
  • Linux下Tomcat安装与启动
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .