GWT Spring - WebApplicationInitializer does not start

2016-03-24 Thread Łukasz Drzyzga
Hi, I want to configure Stomp MessageBroker by programmaticaly java code using Spring annotations in GWT 2.7 project but I noticed that method onStartup is not executed :/ I used system output print, logger and breakpoints and it's confirmed. I don't know what the problem? Maybe Jetty doesn't

Re: GWT React

2016-03-24 Thread Juan Pablo Gardella
Thanks for sharing!, worth to try it On Thu, 24 Mar 2016 at 13:49 Paul Stockley wrote: > We currently have a large GWT application that we have been working on for > the last 4 years. We use Uibinder and Widgets very > > heavily, although we have our own Widget set and

GWT React

2016-03-24 Thread Paul Stockley
We currently have a large GWT application that we have been working on for the last 4 years. We use Uibinder and Widgets very heavily, although we have our own Widget set and RPC mechanism. The application is being constantly expanded and realistically won’t be fully rewritten for 8-10

Re: Why can I not extend java.util.Date?

2016-03-24 Thread Thomas Broyer
On Thursday, March 24, 2016 at 2:25:09 PM UTC+1, Stefan Falk wrote: > > My main problem here is that on the server side everything is following > the ISO standard MONDAY = 1, TUESDAY = 2, .. etc and since we only got Date > on he client things can get mixed up. This is why I thought I could >

Re: Why can I not extend java.util.Date?

2016-03-24 Thread Chad Vincent
If you do extend Date, I would not use any 3rd party library calls that take a Date and may use Day of Week, as they might well explode on Sundays. And that has the same problem as a util class, you may forget and make the call somewhere. It's really a lose-lose situation. You're not really

Re: Any progress with GWT 2.8.0

2016-03-24 Thread Emilio Bravo
For more information read the comments https://plus.google.com/104553077953666769660/posts/jHS1YnkR1sM El miércoles, 23 de marzo de 2016, 19:43:40 (UTC+1), steve Zara escribió: > > It's approaching the end of March 2016. The last steering group meeting > was 10th February. So any sign of a

Re: Why can I not extend java.util.Date?

2016-03-24 Thread Stefan Falk
My main problem here is that on the server side everything is following the ISO standard MONDAY = 1, TUESDAY = 2, .. etc and since we only got Date on he client things can get mixed up. This is why I thought I could wrap/extend Date and just override the getDay() method in order to - have

Re: Differences between permutations

2016-03-24 Thread Kirill Prazdnikov
Thanks, I know that I can collapse, but I want to execute the only one everywhere (Edge, Chrome, FF) I will look at On Thursday, March 24, 2016 at 3:28:42 PM UTC+3, Jens wrote: > > You have to go through all *.gwt.xml files of GWT SDK and search for > deferred binding rules that match the

Re: Differences between permutations

2016-03-24 Thread Jens
You have to go through all *.gwt.xml files of GWT SDK and search for deferred binding rules that match the user.agent property against safari / firefox. Also the GWT compiler itself might execute some visitors specific to a permutation on the parsed AST. These visitors can be found in

Differences between permutations

2016-03-24 Thread Kirill Prazdnikov
Where can I find the differences in runtime for code generated for chrome and firefox ? I`m looking for a way to have the only permutation for all browsers, is there a significant reason having many of them ? Thanks -- You received this message because you are subscribed to the Google