if (openfireHome == null) {
            try {
                openfireHome = verifyHome("F:\\openfire", jiveConfigName).getCanonicalFile();
            }
            catch (FileNotFoundException fe) {
                // Ignore.
            }
            catch (IOException ie) {
                // Ignore.
            }
        }下载了openfire的原码和安装程序。。在Myeclipse中调试的时候在这里填写的是路径是之前在电脑上已经安装好的openfire的路径
run能跑起来然后在原码上修改jsp页面发现没有用。为什么修改了没有什么用呢???

解决方案 »

  1.   


    if (openfireHome == null) {
                try {
                    openfireHome = verifyHome("E:\\DynamicWebProjects\\openfire_src\\target\\openfire", jiveConfigName).getCanonicalFile();
                }
                catch (FileNotFoundException fe) {
                    // Ignore.
                }
                catch (IOException ie) {
                    // Ignore.
                }
            }原来是路径的问题。
      

  2.   

    你修改过之后  重新编辑一下。。在AVT里。
     如果你没有重新编辑  运行的还是上一次没有修改过的代码。