Can one convince code server to continue with compilation even if certain source files are missing?

2023-02-10 Thread Michael Moser
Hi all I am trying to set my GWT development environment up such that I deploy to a local Tomcat (v8.5 in my case) from my IDE (Eclipse and IntelliJ – I am setting this up for an entire team) and then start CodeServer to supply the JS code, the code maps and what not. I managed to get things

What do these error messages mean?

2023-02-10 Thread Michael Moser
I boiled the cases where the compilation triggered in the code server stalls (see my previous email) down to three errors (the other dozen or so I was able to fix), but what do these last error messages try to convey to me? [INFO] [ERROR] Line 193: Rebind result

Re: What do these error messages mean?

2023-02-10 Thread lofid...@gmail.com
You need to think that the result app will be running in browser as JavaScript. Can you do System.getProperty(...) in web browser? In my last article I emphasize this: *(4) Treat the client as a JavaScript app* It is helpful for Java developers to think of the client as a JavaScript web

Re: What do these error messages mean?

2023-02-10 Thread lofid...@gmail.com
You can still emulate System.xxx if you want to: https://stackoverflow.com/questions/6457047/gwt-java-emulation Michael Moser schrieb am Freitag, 10. Februar 2023 um 17:15:25 UTC+1: > I boiled the cases where the compilation triggered in the code server > stalls (see my previous email) down to