Situation:
It is a situation for BANano projects only. The problem is when the app runs it it trying to re-transpile the WebApp, which it does not need to do. If you do not use a BANanoServer, you do not need the .jar file, generating it once is enough.
Solution:
We can catch this by adding a startup parameter. If there is a startup parameter (let's say -run, but can be anything really), we want to skip re-transpiling. It is not needed as long was we run it in release mode on our development machine, the app is generated in the www folder.
As no code is provided, this is the best I can do:
' in Sub AppStart (Args() As String)
...
If Args.Length = 0 Then
' initialize BANano
Server.BANano.Initialize("BANano", PWAName, 1)
End If
...
If Args.Length = 0 Then
' BUILD PWA
Server.BANano.BuildForRESTAPWithPWA(File.Combine(File.DirApp,"www"))
End If
This way, usage is pretty simple:
On your DEV PC (which has B4J installed):
1. run in release mode to generate the PWA and the .jar
On the deploy server (without B4J installed):
1. Copy the www folder, server.ini, the .jar and whatever other files you need
2. start the server with java -jar yourapp.jar
-run
The code "If Args.Length = 0 Then" will return false and hence not try to initialize BANano or run the Build command.
Alwaysbusy