Hi,
M facing trouble while making 'build.bat'. I jst want to know that how to make build.bat.? what files that the build.bat contains.? & how to config the build.bat so that it will b efficient in low time.?
Any help will be thankfull.
Thanks.
build.bat (or .sh for Unix people) builds the java app and then the webapp.
It takes the UI down for a period of time, typicaly 5-10 minutes depending. More if you have an error in your Java and it doesn't compile.
You can do a couple of things to lessen this issue.
1. Build your jar in a separate location and copy it into the lib folder. No compiling and a very high likelyhood the webapp will properly deploy.
2. Build a separate JVM for the java code and run your custom code on that. Takes some development and some functionality is difficult, but several companies use this approach.
When you say "M facing trouble while making 'build.bat'."
Can you let us know , is the build unsuccessfull ?
Thanks
Paul