Sunday, May 28, 2023

Re: Article Planning Spring Boot and GWT Boot with Domino + Nalu

I actually created this article…


It's time that Java developers don't need to hide their capabilities behind JavaScript 😅

Lofi 

Am 27.05.2023 um 20:32 schrieb Alex Karg <alexkarg7@gmail.com>:

Hi Lofi, +1, this article would certainly be a great read. Did you actually manage to create it yet? Thanks, Alex

On Sunday, December 18, 2022 at 1:04:48 PM UTC+1 lofid...@gmail.com wrote:
Hi All,

I'm looking forward for Xmas holidays... Preparing an article for GWT / J2CL:

Spring Boot and GWT Boot with DominoKit - Introduction - I would take the "StockWatcher" example and build a Domino UI and Nalu web app.

Any other wishes? ☺️

Another question, I see some questions about moving from old GWT to a newer version. Mostly they still use Eclipse based development and maybe Ant?

Is it worth it to create a "recipe" in OpenRewrite to be able to move all the old GWT webapps automatically to the newer structure with TBroyer Maven? It's a pity that people stuck in the older structure.

Thanks,
Lofi

Debugging in Chrome is already very good, and we are actually independent of the IDE with the Maven plugin...

--
You received this message because you are subscribed to a topic in the Google Groups "GWT Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/pr_jDlWpmDs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c3f8cac0-ee38-4ab7-8109-d6cf69f5c9a4n%40googlegroups.com.

Saturday, May 27, 2023

Re: Article Planning Spring Boot and GWT Boot with Domino + Nalu

Hi Lofi, +1, this article would certainly be a great read. Did you actually manage to create it yet? Thanks, Alex

On Sunday, December 18, 2022 at 1:04:48 PM UTC+1 lofid...@gmail.com wrote:
Hi All,

I'm looking forward for Xmas holidays... Preparing an article for GWT / J2CL:

Spring Boot and GWT Boot with DominoKit - Introduction - I would take the "StockWatcher" example and build a Domino UI and Nalu web app.

Any other wishes? ☺️

Another question, I see some questions about moving from old GWT to a newer version. Mostly they still use Eclipse based development and maybe Ant?

Is it worth it to create a "recipe" in OpenRewrite to be able to move all the old GWT webapps automatically to the newer structure with TBroyer Maven? It's a pity that people stuck in the older structure.

Thanks,
Lofi

Debugging in Chrome is already very good, and we are actually independent of the IDE with the Maven plugin...

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/c3f8cac0-ee38-4ab7-8109-d6cf69f5c9a4n%40googlegroups.com.

Wednesday, May 17, 2023

Re: Entry point

The entrypoint is supposed to function as the start of the application - how do you "enter" into it. You likely don't encounter the same entrypoint more than once as the app is being used, and any/all entrypoints will run right at page load. Technically each of what you describe is probably possible, but it seems very likely that you wouldn't want to use an entrypoint to manage a dialog that is opened by clicking a button.

Typically, the entrypoint is used like a java public static void main method - just one, only do enough in it to start the application.

On Sunday, May 14, 2023 at 11:44:47 PM UTC-5 ronjos...@gmail.com wrote:
Thank you Colin for responding , 

Can we use the entry point for some specific page or widget in the application?
e.g. There is a dialog in the application on which if clicked on edit button , we see another dialog on which there is a button to add files. 
Can we use the entry point to drag and drop files over the area of that add file button ?

Regards
Ronit

On Monday, 15 May 2023 at 04:40:28 UTC+5:30 Colin Alworth wrote:
While it is technically possible to have more than one EntryPoint declared in your .gwt.xml files(s), order might be hard to control precisely. I believe the order is deterministic, but not strictly defined by the compiler (likely the order in which entry-point> tags are encountered when parsing .gwt.xml files, but since they are permitted to have cyclical dependencies, this is not always obvious).

With that said, this can be a good way to compile multiple independent applications into a single output JS (so that they avoid sending the same  classes to the browser multiple times. I've seen this done with a conditional at the top of each entrypoint, to that way one or more entrypoint can run at page load automatically, and each enhance the part of the page that matters specifically to them. Ideally in this case, order of execution will not matter, so the above concern won't apply.

On Sunday, May 14, 2023 at 5:57:20 PM UTC-5 ronjos...@gmail.com wrote:
Hello Team,

I am new to GWT and working on an existing system.

My application has already got an entry point. Can I have one more implementation of the Entrypoint ?

Thanks in advance 
Ronit

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/f17f59a2-1090-4c8d-bf9c-663fe72dfe87n%40googlegroups.com.

Tuesday, May 16, 2023

Re: GWT for a Java to WASM compiler

I think the advantages come from transpiling languages other than JS to WASM (in their examples, Kotlin and Dart).  Eg: An integer in Java, will still be in integer in WASM, while when you ask GWT for an integer, it has to do a bunch of magic, as JS doesn't have integers.

On Sunday, 14 May 2023 at 9:50:58 pm UTC+10 lofid...@gmail.com wrote:
Thanks for the info. A very good explanation in that video.

But still don't understand why would this solution with WASM GC 2x faster than the "pure transpiling" solution? The latter is completely in JS and uses the GC from JS as it is.

Does this means using JS with WASM will be 2x faster than the pure JS??? 🤣

Thanks 
Lofi

Craig Mitchell schrieb am Freitag, 12. Mai 2023 um 12:27:43 UTC+2:
At Google I/O 2023, they showed that WASM (Web Assembly) is finally getting garbage collection (as well as shared memory).


They showed that JetBrains was experimenting with Kotlin compiling to WASM.

There wasn't any mention of anyone doing Java compilation to WASM.

I wonder how hard it would be to modify GWT to compile to WASM.  Possible?  Thoughts?

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/edaac5a4-7bdd-42d0-a6af-0909da7d0573n%40googlegroups.com.

Sunday, May 14, 2023

Re: Entry point

Thank you Colin for responding , 

Can we use the entry point for some specific page or widget in the application?
e.g. There is a dialog in the application on which if clicked on edit button , we see another dialog on which there is a button to add files. 
Can we use the entry point to drag and drop files over the area of that add file button ?

Regards
Ronit

On Monday, 15 May 2023 at 04:40:28 UTC+5:30 Colin Alworth wrote:
While it is technically possible to have more than one EntryPoint declared in your .gwt.xml files(s), order might be hard to control precisely. I believe the order is deterministic, but not strictly defined by the compiler (likely the order in which entry-point> tags are encountered when parsing .gwt.xml files, but since they are permitted to have cyclical dependencies, this is not always obvious).

With that said, this can be a good way to compile multiple independent applications into a single output JS (so that they avoid sending the same  classes to the browser multiple times. I've seen this done with a conditional at the top of each entrypoint, to that way one or more entrypoint can run at page load automatically, and each enhance the part of the page that matters specifically to them. Ideally in this case, order of execution will not matter, so the above concern won't apply.

On Sunday, May 14, 2023 at 5:57:20 PM UTC-5 ronjos...@gmail.com wrote:
Hello Team,

I am new to GWT and working on an existing system.

My application has already got an entry point. Can I have one more implementation of the Entrypoint ?

Thanks in advance 
Ronit

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/6302e782-6cc6-4db2-ab16-b69e9531c709n%40googlegroups.com.

Re: Entry point

While it is technically possible to have more than one EntryPoint declared in your .gwt.xml files(s), order might be hard to control precisely. I believe the order is deterministic, but not strictly defined by the compiler (likely the order in which entry-point> tags are encountered when parsing .gwt.xml files, but since they are permitted to have cyclical dependencies, this is not always obvious).

With that said, this can be a good way to compile multiple independent applications into a single output JS (so that they avoid sending the same  classes to the browser multiple times. I've seen this done with a conditional at the top of each entrypoint, to that way one or more entrypoint can run at page load automatically, and each enhance the part of the page that matters specifically to them. Ideally in this case, order of execution will not matter, so the above concern won't apply.

On Sunday, May 14, 2023 at 5:57:20 PM UTC-5 ronjos...@gmail.com wrote:
Hello Team,

I am new to GWT and working on an existing system.

My application has already got an entry point. Can I have one more implementation of the Entrypoint ?

Thanks in advance 
Ronit

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/3399c7a4-4221-4f91-a921-a88ede7dd5a3n%40googlegroups.com.

Entry point

Hello Team,

I am new to GWT and working on an existing system.

My application has already got an entry point. Can I have one more implementation of the Entrypoint ?

Thanks in advance 
Ronit

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/e16dde65-00bd-49f0-b128-3a252fa2107cn%40googlegroups.com.