2

今天我的一个实习生来找我,问他在哪里可以找到以下课程

com.ibm.ws.logging.object.hpel.WsLogRecord

通常像 findjar.com 这样的东西会找到它,但在这种情况下它不能。我最终使用 Jar Explorer 在以下位置的 WAS 8 库中找到它,但该过程效率低下:

{server root}\plugins\com.ibm.hpel.logging.jar

这篇文章的目的是提供关于在哪里可以找到它的洞察力,同时也询问当在线实用程序无法提供您需要的洞察力时,查找课程的最佳方法是什么。

谢谢,杰里米

4

3 回答 3

2

我在运行的 WebSphere 实例下找到它的方法是部署一个 JSP,该 JSP 使用 DeveloperWorks 文章中描述的技术来定位提供特定类的 jar。

对于后代,这是该 JSP的来源:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <title>Servlet Container Class Finder</title>
</head>
<body>
<h2>Servlet Container Class Finder</h2>
<p>Enter the fully-qualified name of a Java class
(e.g. org.apache.oro.text.regex.Perl5Compiler) in the field below. The
servlet will attempt to load the class and, if successful, query the
class' <em>java.security.CodeSource</em> for the location of the class
using the following methods:
    <pre>
    Class.forName(className).getProtectionDomain().getCodeSource()
    </pre>
</p>
<p>
<%
    String className = request.getParameter("className");
    String prefill = "";
    if (className != null)
    {
        prefill = className;
        if (className.trim().length() != 0)
        {
            try
            {
                java.security.ProtectionDomain pd = Class.forName(className).getProtectionDomain();
                if (pd != null)
                {
                    java.security.CodeSource cs = pd.getCodeSource();
                    if (cs != null)
                    {
                        out.println(cs);
                    }
                    else
                    {
                        out.println("No CodeSource found");
                    }
                }
                else
                {
                    out.println("No ProtectionDomain found");
                }
            }
            catch (Throwable t)
            {
                out.println(t);
            }
        }
    }
%>
</p>
<form method="post" action="<%= request.getRequestURI()%>">
    <p>
    Class Name: <input type="text" name="className" value="<%= prefill %>" size="40"/>
    <input type="submit" value="Submit"/>
    </p>
</form>
<p>
    Code taken from 
    <a href="http://www.ibm.com/developerworks/websphere/techjournal/0406_brown/0406_brown.html">
    this DeveloperWorks article</a>.
</p>
</body>
</html>
于 2012-08-18T15:24:16.277 回答
1

如果所有其他方法都失败了并且我无法使用 Eclipse Quick Type Hierarchy 找到该类,它显示了该类所在的 jar,我将使用以下几行的 shell 脚本:

for f in `find /path/to/websphere/lib -name "*.jar"` 
do    
   FOUND=`jar tvf $f | grep WsLogRecord`
   if [[ -n $FOUND ]]
   then
       echo "Found in $f:"
       echo $FOUND
   fi
done
于 2012-08-17T14:35:57.987 回答
1

我能够在 com.ibm.ws.logging.object.WsLogRecord 下找到 WsLogRecord(减去 hpel)。我用eclipse在com.ibm.ws.logging.object下查看,找不到hpel,但是找到了WsLogRecord。我能够使用 jd-eclipse 查看实际的课程。.class 中的注释给出了文件位置(C:\IBM\SDP\runtimes\base_v7\plugins\com.ibm.ws.runtime.jar)。看起来我在 findjar.com 上也找不到它,而 .jar 是 IBM 的开箱即用代码。我想这并不能回答如何在网上找到它,但我能够找到它,然后通过上述步骤查看课程。

于 2012-08-17T14:17:22.413 回答