Re: Happy New Year 2024 and an Article for JavaScript Developers

2024-03-25 Thread Dr. Lofi Dewanto
... and I also have a Padlet for all the actual infos about GWT / J2CL, enjoy: https://bit.ly/GWTIntroPadlet -- Dr. Lofi Dewanto https://twitter.com/lofidewanto Check out my presentation @Navigate 2022 Micro Frontends https://youtu.be/1lHuGu8OLZU Am So., 24. März 2024 um 23:48 Uhr schrieb

Re: Happy New Year 2024 and an Article for JavaScript Developers

2023-12-29 Thread Dr. Lofi Dewanto
Upps, I thought you just need to login into Medium and can read everything? Normally is just like that. Anyway here is the Friend Link: https://bit.ly/10JS2024friend. Should be possible to read without login with the Friend Link. Enjoy, Lofi. -- Dr. Lofi Dewanto https://twitter.com/lofidewanto

Re: Convert Existing GWT Backend to SPRING BOOT

2022-12-06 Thread Dr. Lofi Dewanto
Thanks a lot for the tips on Spring Boot packaging in JAR. Yes, the first example I showed was with packaging WAR. That works fine. I would try your tips to be able to run on the JAR packaging (second example). I'll tell you, whether I'm successful or not. It is weird, that I could run the

Re: GWT tutorial does not compile

2021-05-18 Thread Dr. Lofi Dewanto
Upps my mistake... "Version" is wrong --> "version"... here you are com.google.elemental2 elemental2-core 1.1.0 Am Di., 18. Mai 2021 um 13:38 Uhr schrieb likejudo : > IntelliJ. > Unfortunately, it gives an error that "com.google.elemental2: > elemental2-core.pom:unknown" in

Re: GWT tutorial does not compile

2021-05-18 Thread Dr. Lofi Dewanto
If you use Eclipse just create a new Maven project and add this dependency in the pom.xml com.google.elemental2 elemental2-core 1.1.0 Then run mvn clean package You can do the same with IntelliJ or VSC. likejudo schrieb am Di., 18. Mai 2021, 01:02: > Dr Lofi, > What archetype

Re: GWT tutorial does not compile

2021-05-17 Thread Dr. Lofi Dewanto
You need to decide first, what communication protocol you want to use between your Web browser (client) and your Spring Boot (server): - GWT RPC - REST In both cases you can upload your files... GWT RPC:

Re: [gwt-contrib] Asking for decision on DevMode embedded Jetty support

2021-05-04 Thread Dr. Lofi Dewanto
@Thomas: thanks a lot for the insight... Yes, you are correct I only use the embedded Jetty Server to serve (development-only) static HTML page. And I won't ever need more than this... So then I think, I don't really understand what @Elias means sofar... I thought, he had the same

Re: Including a submodule of a gwt project in maven

2020-10-19 Thread Dr. Lofi Dewanto
n, Oct 19, 2020 at 1:30 AM Dr. Lofi Dewanto > wrote: > >> Hmmm do you mean, maven-gwt-plugin compiles / transpiles everything first >> before it starts with gwt:devmode? ... Actually it doesn't need to, I >> agree... maybe @tbroyer could explain? >> >> Elha

Re: Including a submodule of a gwt project in maven

2020-10-18 Thread Dr. Lofi Dewanto
Hmmm do you mean, maven-gwt-plugin compiles / transpiles everything first before it starts with gwt:devmode? ... Actually it doesn't need to, I agree... maybe @tbroyer could explain? Elhanan Maayan schrieb am So., 18. Okt. 2020, 23:58: > thanks, btw i don't understand why the maven plugin

GWT - 2.9 Error compiling GWT

2020-05-21 Thread Dr. Lofi Dewanto
Hmm from the exception I see objectweb.asm lib? Do you mix your Client and Server Module? -- 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

Re: how to run gwt newer version in netbeans

2020-05-19 Thread Dr. Lofi Dewanto
..; > ..; > ..........; > ..; > } > }); > } > } > > > > * we have many *Home_Model.java*

Re: how to run gwt newer version in netbeans

2020-05-19 Thread Dr. Lofi Dewanto
Thomas said. I was lucky at that time to be able to put everything running (Spring Boot, GWT, etc.), but today maybe not anymore since Spring Boot add maybe new Jetty, etc. Hope this helps. Lofi Am Samstag, 16. Mai 2020 12:44:45 UTC+2 schrieb Gordan Krešić: > > On 16. 05. 2020. 00:23, Dr

Re: Conflict between gwt-dev.jar and the Java 11 Module system still exists in GWT 2.9.0.

2020-05-18 Thread Dr. Lofi Dewanto
I have general the problem: Using OpenJDK 11 with my latest Eclipse 2020-03. It always gives me an exception, so that I could not use JDK 11 with my latest Eclipse. Therefore I still use JDK 8 to run my Eclipse 2020-03... I haven't got any time to search why... Thanks, Lofi Am Montag, 18.

Re: how to run gwt newer version in netbeans

2020-05-15 Thread Dr. Lofi Dewanto
I would prefer just using: (1) Maven for everything, never depends on IDE plugins, you can use GWT Maven plugin to run the transpiler and serve the HTML + JS files, no need to use plugin. (2) For debugging I'm using Chrome and it has a very good source map debugger. (3) Best practice, never

Re: GWT 2.9.0 release

2020-05-15 Thread Dr. Lofi Dewanto
I published a short news article at heise.de: https://bit.ly/GWTNews29 Enjoy, Lofi -- 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

Re: GWT 2.9.0 release

2020-05-14 Thread Dr. Lofi Dewanto
Congrats to the team!!! Great news! -- 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+unsubscr...@googlegroups.com. To view this discussion on the

Re: New Presentation about Modern GWT Webapp Development

2020-05-13 Thread Dr. Lofi Dewanto
I added a slide for: *Why not server-side Java UI frameworks like Vaadin, Wicket, JSF, …?* IMHO, this is an important point too. Thanks, Lofi -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving

Re: New Presentation about Modern GWT Webapp Development

2020-05-13 Thread Dr. Lofi Dewanto
Update again with and Because I think modern GWT == Elemental2 and Java Annotation Processor (no GWT generators) and I still put the "included" GWT UIs as both. Because in 2.8.x you still use GWT generators and older Widget stuffs. Thanks, Lofi -- You received this message because you are

Re: New Presentation about Modern GWT Webapp Development

2020-05-13 Thread Dr. Lofi Dewanto
Hi Jens, thanks a lot for your comment. Yes, a good example is actually GWTBootstrap3: - Old one based on old stuffs GWT: https://gwtbootstrap3.github.io/gwtbootstrap3-demo - And the new one based on Elemental2: https://github.com/treblereel/gwtbootstrap3 So as an application

Re: New Presentation about Modern GWT Webapp Development

2020-05-12 Thread Dr. Lofi Dewanto
Hi Thomas, thanks a lot for the review. I updated following: (1) Slide 18: updated with your content (2) Slide 20: I let the slide 20 the same but I inserted a slide 23, which said "... more than two connections..." (2.1) I also add a slide 24 about

Re: Deploying a GWT website

2020-05-12 Thread Dr. Lofi Dewanto
GWT is a transpiler. At the end the result is just a collection of JavaScript + HTML files. You don't need any buildpacks for this purpose... Just take the "index.html" with all the JavaScript files "..cache.js". So generally only Tomcat / Jetty / Apache... pure web servers are enough.

New Presentation about Modern GWT Webapp Development

2020-05-11 Thread Dr. Lofi Dewanto
Hi All, if you need a presentation about modern GWT development as an introduction, just take a look at this: https://bit.ly/gwtintropresentation I also added this presentation in the Modern GWT Padlet: https://bit.ly/GWTIntroPadlet Have fun, Lofi -- You received this message because you

Re: GWT 2.7 and JDK

2020-05-11 Thread Dr. Lofi Dewanto
Please see this answer from Thomas: https://stackoverflow.com/questions/29913237/is-java-8-compatible-with-gwt-2-6-or-2-7 Am Montag, 11. Mai 2020 18:52:50 UTC+2 schrieb wissam aoufan: > > > Hi, > > what JDK versions supported with GWT 2.7? > -- You received this message because you are

Re: Upgrade to 2.8.2 from 2.7.0 is having compilation errors while doing GWT compile

2020-04-27 Thread Dr. Lofi Dewanto
(1) Eclipse will not show an error because if your Java code is correct, everything is correct. (2) As the message said, maybe you need to put a Jar file with sources into your dependency? GWT is a transpiler so it needs all the source codes to be able to translate to JavaScript. Am Montag,

Padlet for GWT / J2CL

2020-04-27 Thread Dr. Lofi Dewanto
Hi All, I build a Padlet for GWT / J2CL for Dummies... You can add an item but I need to take a look at it first. Here you are: https://bit.ly/GWTIntroPadlet Hope to get more beginners coming to GWT / J2CL  Cheers, Lofi -- You received this message because you are subscribed to the Google

New Article Java2JavaScript Transpiler GWT J2CL - Java Programming for Web Browser

2019-12-23 Thread Dr. Lofi Dewanto
Hi All, for your information: I wrote a new article about GWT / J2CL in German language: http://bit.ly/GWTHeise2019 Enjoy reading, Lofi -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails

New Article #GWT Transpiler Webbrowser Programming in German language

2019-12-21 Thread Dr. Lofi Dewanto
Hi All, just for your information, I published an article about #GWT #J2CL at heiseDeveloper: http://bit.ly/GWTHeise2019 Have fun, Lofi -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails

A Short GWT JsInterop Article for Beginners

2019-06-03 Thread Dr. Lofi Dewanto
Hi All, I wrote a short article to introduce GWT and JsInterop for beginners, hope to see more people using GWT: http://bit.ly/WebJavaStory Enjoy, thanks, Lofi -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and

Developers Meetup @DEVK "Showdown GWT vs. VueJS" in Cologne Germany

2019-05-08 Thread Dr. Lofi Dewanto
Hi All, just for you who is living in *Cologne and area, Germany*, we are hosting a free meetup: *"GWT vs. VueJS"* Here is the description of the meetup: http://bit.ly/DevkGwtVue Frank Hossfeld will show us everything about GWT. If you are in the near just sign in for free. I'm looking

A German Short Article for J2CL Open Source Release

2018-11-19 Thread Dr. Lofi Dewanto
Hi All, today I managed to write a short article about J2CL Open Source in German language @heise Developer, one of the biggest developer publisher in Germany, also the main sponsor for JavaLand conference. http://bit.ly/j2clheise Enjoy, Lofi -- You received this message because you are

Re: A Sample application for GWT

2018-09-07 Thread Dr. Lofi Dewanto
I never use GWT Eclipse Plugin... If you are using Maven, try GWT Boot: https://github.com/gwtboot/gwt-boot-samples Introduction: https://dzone.com/articles/first-experience-with-gwt-boot Hope this helps, Lofi -- You received this message because you are subscribed to the Google Groups "GWT

Re: First experience using GWT Boot in my Java Devs Training

2018-05-25 Thread Dr. Lofi Dewanto
Is there any standard Gradle Plugin for GWT? Thomas Broyer schrieb am Fr., 25. Mai 2018, 00:37: > I am :-) > Though I have very limited experience with GWT and Gradle. > > -- > You received this message because you are subscribed to a topic in the > Google Groups "GWT Users"

Re: First experience using GWT Boot in my Java Devs Training

2018-05-24 Thread Dr. Lofi Dewanto
15:08: > Nice article, thanks for sharing it. > > I wonder if it's time to move from maven to gradle (in general and also > talking specifically about GWT Boot). > > > On Wednesday, May 23, 2018 at 2:24:14 PM UTC-5, Dr. Lofi Dewanto wrote: >> >> This article is now b

Re: First experience using GWT Boot in my Java Devs Training

2018-05-23 Thread Dr. Lofi Dewanto
This article is now being published by DZone: *http://bit.ly/2IICra8* Enjoy and looking forward for good discussion, Lofi Am Freitag, 18. Mai 2018 00:30:39 UTC+2 schrieb Dr. Lofi Dewanto: > > I wrote my experience using the SNAPSHOT version of GWT Boot for my > internal Java Train

First experience using GWT Boot in my Java Devs Training

2018-05-17 Thread Dr. Lofi Dewanto
I wrote my experience using the SNAPSHOT version of GWT Boot for my internal Java Training: http://bit.ly/2L54Etr Would like to know whether someone has the same experience? Thanks, Lofi -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: New Widgets Library: XGL

2018-05-15 Thread Dr. Lofi Dewanto
Nice work, what kind of web tech do you use? Elemental2 or Canval HTML? Thanks, Lofi Am Donnerstag, 10. Mai 2018 08:58:10 UTC+2 schrieb Paul Sitarz: > > Hi Guys, > > A few years ago, when I heard the idea of removing widgets from GWT 3.0, I > sensed it would be a huge issue. > > I started to

New GWT project: GWT Boot

2018-03-22 Thread Dr. Lofi Dewanto
As I tried to write an introductory article for GWT newbies I feel that it is so difficult to jump into the development of GWT: - Docs are outdated - There are a lot of nice UI frameworks for GWT (domino-ui, gwtbootstrap3, gwtmaterialdesign, vue-gwt, etc.) So before I write my article I started