Documentation of compiler optimisations?

2020-09-29 Thread George Georgovassilis
Is there any (recent) documentation of compiler optimisations? I am specifically looking for advice on which code constructs to use, which to avoid and how they translate into Javascript - ideally an updated version of [1] Cheers, G. [1]

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread lofid...@gmail.com
One thing to the Mocking framework: https://mswjs.io it looks indeed very interesting. In GWT I used to implement the mock implementation in "development time" and remove it in "production time" by using GWT options for different "sourcepath" and "entry point" with help of DI. It works very

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread lofid...@gmail.com
Hi Thomas, thanks for the feedback. This is my point of view as a Java developer I did some Polyglot projects and have written my summary here from 2011: - English: http://lofidewanto.blogspot.com/2011/10/why-is-polyglot-programming-or-do-it.html

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread Rodolfo M. Raya
I can't choose which security scanner to use. That's already defined by clients. Maven is not an option. Regards, Rodolfo On Tue, Sep 29, 2020 at 11:03 AM lofid...@gmail.com wrote: > Hi Rodolfo, > > thanks for the insight. > > Yes, I think SonarCube is standard tool for the quality of the

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread Thomas Broyer
On Tuesday, September 29, 2020 at 12:08:36 AM UTC+2, lofid...@gmail.com wrote: > > OK, now I understand you  > > Yes, we always have to separate the Client and the Server part. This is > also GWT best practice. > > But if you are using JavaScript on browser you lose the advantages like: > >

Re: Preauthentication service with GWT

2020-09-29 Thread Hamid Razoki
You can use keycloak as auth server and keycloak javascript adapter on the client side Le mar. 29 sept. 2020 à 08:23, Gordan Krešić a écrit : > On 28. 09. 2020. 11:20, jhon tonini wrote: > > I want to develop an application for authenticate the user and redirect > he > > to my web application.

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread Andrea Stocchero
Sorry Lofi, I misunderstood you. Fully agree with you! Il giorno martedì 29 settembre 2020 alle 10:56:26 UTC+2 lofid...@gmail.com ha scritto: > Ahh, I mean not only "Maven" just a *build tool* like Maven, Gradle, > Buildr, Bazel, Ivy or whatever...  > > The main thing we need to *manage the

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread Andrea Stocchero
Sorry Lofi, Il giorno mar 29 set 2020 alle ore 10:57 lofid...@gmail.com < lofidewa...@gmail.com> ha scritto: > Ahh, I mean not only "Maven" just a *build tool* like Maven, Gradle, > Buildr, Bazel, Ivy or whatever...  > > The main thing we need to *manage the dependencies and versions*. > >

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread Jens
> If Maven or some other tool decides to update one of the selected jars > used by my project, it can introduce a version marked as a high security > risk. That's something I can't allow. > You define a specific library version in your dependency management tool. There are also tools for

Re: Why Don’t You Use Java for Programming the Client-Side Web Apps on Web Browser?

2020-09-29 Thread Rodolfo M. Raya
Hi, I don't want a tool to manage dependencies for me because that means I may lose clients concerned with security. I wrote a web app used by a couple of large banks. Each new release must pass extensive security tests before deploying. Code must be reviewed using SonarQube, dependencies must

Re: Preauthentication service with GWT

2020-09-29 Thread Gordan Krešić
On 28. 09. 2020. 11:20, jhon tonini wrote: I want to develop an application for authenticate the user and redirect he to my web application. Which server-side frameworks can I use for develop this (I want to use GWT as client-side framework)? Besides already mentioned Spring Security, you may