Re: Client only applications

2019-10-23 Thread Luke Last
Here's a client only application I wrote 4 years ago as an example. https://github.com/lukelast/gwt-module-config -Luke On Wednesday, October 23, 2019 at 4:25:08 AM UTC-4, nikola wrote: > > What is the recommended way of making client only applications in GWT? > There are archetypes here >

Re: Why the GWT complier used so much memory?

2018-09-01 Thread Luke Last
If you're compiling multiple permutations at a time you could reduce the number. On Thursday, August 30, 2018 at 7:30:17 AM UTC-4, Peter Cao wrote: > > > > > When i was compiling the GWT application,the CPU usage is showing below > > How can i reduce the memory footprint of my application > > --

Best Practice for JSON object recreation on client

2016-08-18 Thread Luke Last
I use jackson/gson on the server to serialize and then gwt-jackson on the client to deserialize a shared pojo. I'm interested in finding out if JsInterop gives better performance though. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubsc

Re: Is 2.8.0-rc2 GWT Maven Plugin available?

2016-08-12 Thread Luke Last
In my experience it always takes longer for the corresponding version of the maven plugin to get published. I just use the previous version plugin and this one that doesn't need to be updated each release. https://github.com/tbroyer/gwt-maven-plugin On Friday, August 12, 2016 at 5:25:20 AM UTC-

Re: GWT 2.4.0 - SelectItem does not work when I use application via Android

2016-08-07 Thread Luke Last
My suggestion is that you try upgrading to GWT 2.7 if at all possible because old versions are much more likely to have those kinds of problems with new browsers. -Luke On Friday, August 5, 2016 at 10:30:42 AM UTC-4, Federico Cacco wrote: > > Hi > > I have developed a web application in GWT 2.4.

Re: Organizing project files with UIBinder

2015-12-14 Thread Luke Last
Here's my quick stab at these, hope it helps. 1. I've never seen this done differently, and personally I find it helpful to have them in the same package. 2. UIBinder is only client side. 3. UIBinder will work with classic CSS. You could also consider using CssResource (gss) or using gss embedde

Re: VerticalPanel in DockLayoutPanel

2015-12-12 Thread Luke Last
Only the center will auto size. The west, and other sides have to be given a fixed size. On Friday, December 11, 2015 at 5:15:40 PM UTC-5, Roberto Attias wrote: > > Hi, > I have a VerticalPanel containing 100 buttons with label "Component"+idx > wrapped by a ScrollPanel. the ScrollPanel is added

Re: Creation of multiple RPC services and performance

2014-11-14 Thread Luke Last
m/2007/11/30/optimizing-startup-time-for-gwt-hosted-mode/ >> >> Please advise further. >> >> >> On Thursday, November 13, 2014 3:29:02 PM UTC-6, Luke Last wrote: >>> >>> The performance hit comes from actually performing the RPC request >>>

Re: some questions regarding maven and modular-webapp

2014-11-14 Thread Luke Last
Yes, but you can customize the jar file name. On Friday, November 14, 2014 11:02:59 AM UTC-5, Magnus wrote: > > Hi, > > thanks! > > Is ist true that the groupId is never used in the generated files? > For example, if you have 'com.example.applications' as the groupId and ' > example-application' a

Re: Creation of multiple RPC services and performance

2014-11-13 Thread Luke Last
The performance hit comes from actually performing the RPC request between client and server. Instantiating the service with GWT.create doesn't cost anything compared to that. So combining your RPC requests or making them in parallel will give better performance, but the number of RPC services t