运行运行其他类的Java类

时间:2014-10-31 20:39:20

标签: java powershell

我正在使用Powershell运行一个脚本,通过调用其主要更新实用程序类来调用其他类来更新网站。 问题是它运行第一个类(UpdateDBTableType1)而不是其他类。

如果我在eclipse中运行该类,它会按预期顺序调用所有Update Classes。

可能是什么问题?

Powershell脚本:

java -classpath 'lib\*;.' UpdateWebsite | tee-object -filepath "F:\Java     Workspace\UpdateWebsiteOutput\log.txt"

主要效用等级:

public class UpdateWebsite {
    public static void main(String[] args) throws Exception
    {       
          UpdateDBTableType1.main(arguments);
          UpdateDBTableType2.main(arguments);
          UpdateSiteMap.main(arguments);
          CreateImages.main(arguments);
    }
}

0 个答案:

没有答案