The project I work at is quite specific. We use GWT with SAP backend. We run the Dev Mode using the following configuration (as program arguments; I run the project directly using IntelliJ IDEA)
-noserver -logLevel INFO -startupUrl http://server-url:8000/aaa -whitelist ^http[:][/][/]server-url[.]eu[:]8000/aaa com.company.project.main.Main
Note, we didn't use a local server (-noserver
).
After familiarizing myself with the Super Dev Mode, I understood, that it works similar to GWT Web Mode, i.e. it compiles JavaScript (the folder to compile to can be specified) and then runs the code server with that script hosted.
Due to the specifics of the project, the compiled JavaScript is deployed to the remote server using maven via WebDav. So simply specifying -workDir
as a parameter will not deploy the scripts on the remote server. Nor can we run (at least at the moment) a Java server on the server-url
address.
Can we use the Super Dev Mode in this situation?
-bindAddress server-url -port 8000
? If I do that I getjava.net.BindException: Cannot assign requested address
and a warningfailed SelectChannelConnector@server-url:8000
. – Cypriot