2

我在设置过滤器时遇到问题 - 我在 web.xml 中定义的过滤器看起来像这样

  <filter>
   <filter-name>Log</filter-name>
   <filter-class>test.log</filter-class> 
 </filter>
 <filter-mapping>
   <filter-name>Log</filter-name>
   <url-pattern>/*</url-pattern>
 </filter-mapping>

但我收到以下错误 -

SEVERE: Exception starting filter Log
java.lang.ClassNotFoundException: test.log
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1711)
at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1556)
at org.apache.catalina.core.DefaultInstanceManager.loadClass(DefaultInstanceManager.java:532)
at org.apache.catalina.core.DefaultInstanceManager.loadClassMaybePrivileged(DefaultInstanceManager.java:514)
at org.apache.catalina.core.DefaultInstanceManager.newInstance(DefaultInstanceManager.java:133)
at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:256)
at org.apache.catalina.core.ApplicationFilterConfig.setFilterDef(ApplicationFilterConfig.java:382)
at org.apache.catalina.core.ApplicationFilterConfig.<init>(ApplicationFilterConfig.java:103)
at org.apache.catalina.core.StandardContext.filterStart(StandardContext.java:4650)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5306)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1559)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1549)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:334)
at java.util.concurrent.FutureTask.run(FutureTask.java:166)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:722)

我已经定义了类,但由于某种原因,我得到了 Classnotfoundexcetion。有人可以帮我吗?

编辑 - -

我有一个名为 test 的包和一个名为 log 的类。

             package test;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;

    // Implements Filter class
     public class log implements Filter  {
         public void  init(FilterConfig config) {

          }
         public void  doFilter(ServletRequest request, 
             ServletResponse response,
             FilterChain chain) 
             throws java.io.IOException, ServletException {

  // Get the IP address of client machine.   
  String ipAddress = request.getRemoteAddr();

  // Log the IP address and current timestamp.
  System.out.println("IP "+ ipAddress + ", Time "
                                   + new Date().toString());

  // Pass request back down the filter chain
  chain.doFilter(request,response);
  }
   public void destroy( ){
      /* Called before the Filter instance is removed 
      from service by the web container*/
  }
 }

谢谢你,

4

6 回答 6

6

有趣的是,同样的问题今天刚刚发生在我身上,而它昨天还在工作。经过调查显示没有任何问题,我得出结论这是一个 Eclipse 环境问题:

  • 停止 tomcat 服务器
  • 清理项目(项目->清理...)
  • 刷新整个项目(右键项目名称->刷新)
  • 再次启动服务器。

问题没了!

于 2016-04-14T07:38:44.137 回答
3

filter-class 参数需要是一个应该实现 Filter 接口的 Java 类。你能检查一下你的情况吗?

检查此示例以获取指导:

http://viralpatel.net/blogs/tutorial-java-servlet-filter-example-using-eclipse-apache-tomcat/

从上面的链接:

<filter>
    <filter-name>LogFilter</filter-name>
    <filter-class>
        net.viralpatel.servlet.filters.LogFilter
    </filter-class>
    <init-param>
        <param-name>test-param</param-name>
        <param-value>This parameter is for testing.</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>LogFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>



public class LogFilter implements Filter {

    public void doFilter(ServletRequest req, ServletResponse res,
            FilterChain chain) throws IOException, ServletException {...
    }
 }
于 2012-07-25T21:44:00.467 回答
0

对于一个简单的解决方案,请尝试将您的log.class文件放入此目录:

tomcat/webapps/[your app name]/WEB-INF/classes/test 

如果该目录不存在,则创建该目录。


如何找到您的 .class 文件:

大多数情况下,Eclipse 的默认设置会在您保存源文件 ( .java).class时将其编译为文件,否则您可能必须按 CTRL-B(构建)来强制将其编译为.class文件。

完成后,您将能够log.class在 Eclipse 工作区中的以下位置找到该文件:[your workspace name]/[your eclipse project name]/bin/test/

工作区目录位置通常在您启动 eclipse 时可见。对于 Windows 7,我认为它默认为Users目录,WinXP 和 2000 它默认为用户的Documents and Settings文件夹。

交替:

您应该在 Eclipse 窗口的左侧有一个“Package Explorer”视图。它将log.java在包树中包含一个叶子。如果您右键单击该叶子,然后单击Show In> Navigator,这将在“导航器”视图中打开实际的文件结构。

该视图中应该有一个bin可见的节点。在里面你应该找到一个test节点,然后在里面你会看到log.class。您可以右键单击它来复制它,然后只需导航到我在顶部提供的目录并将其粘贴进去。

一切都应该很好。

于 2012-07-25T21:53:04.873 回答
0

这在相关类的源代码中可能有问题。

最近我碰巧看到了同样的问题。经过长时间的艰苦调查,我发现异常是在类中编码的:

$ jad BaseController.class 
Parsing BaseController.class...The class file version is 51.0 (only 45.3, 46.0 and 47.0 are supported)
 Generating BaseController.jad
$ cat BaseController.jad 
// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/kpdus/jad.html
...
import HttpServletRequest;
import HttpServletResponse;
import HttpSession;
...
public class BaseController
{
    public BaseController()
    {
        throw new Error("Unresolved compilation problems: \n\tThe import javax.servlet.http.HttpServletRequest cannot be resolved\n\tThe import javax.servlet.http.HttpServletResponse cannot be resolved\n\tThe import javax.servlet.http.HttpSession cannot be resolved\n\tHttpSession cannot be resolved to a type\n\tHttpServletRequest cannot be resolved to a type\n\tHttpSession cannot be resolved to a type\n\tHttpSession cannot be resolved to a type\n\tHttpServletRequest cannot be resolved to a type\n\tHttpServletRequest cannot be resolved to a type\n\tHttpServletResponse cannot be resolved to a type\n");
    }
...

因此,在使用必要的库重新编译源代码后,问题就解决了。

于 2016-08-23T17:10:03.830 回答
0

曾经出现过问题,最后右键单击项目->构建项目帮助。

于 2019-01-25T14:44:18.267 回答
-1

我猜您没有将其正确复制并包含在 servlet 类路径中。

请参阅此处了解组成 servlet 类路径的内容:

控制 servlet 中的类路径

于 2012-07-25T21:50:13.723 回答