运行 Jbilling 源代码(一个 ANT 项目)



我已经下载了Jbilling 源代码。我在STS(日食)中导入了该项目,但无法运行它。谁能解释一下我如何运行该项目以及在浏览器中访问它的 URL 是什么?

您可以运行 build.xml 默认目标。如果它jbilling_22则需要先运行jar目标,然后再运行默认目标。你可以在src\build\deploy文件夹中找到jbilling.war,将其复制到Tomcat的Web应用程序中。对于jbilling3,你可以作为grails-app运行,你不需要执行任何ant目标。

raher than ANT you can use Grails and run jbilling.
for ANT you can run it by blew ommand
ant test-ws
* ant test-integration
        or, execute single test classes individually
        * ant test-mediation
        * ant test-partners
        * ant test-provisioning
        * ant test-process

最新更新