How to execute a Java program automatically whenever Apache OFBiz startup?
开发者_如何学PythonWe are using Apache ofbiz9.0 for our application. Now I want to execute a Java program automatically whenever ofbiz startup.
How are you starting OFBiz? Is it using the startOFBiz.bat?
You can easily write a bat file which will call these 2 lines
startOFBiz.bat
java MyClass.java
精彩评论