Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-15 Thread Craig Mitchell
Ah, thanks. Sounds like most projects that want a standalone executable, will still be stuck with Launch4J and similar. -- 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

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-15 Thread Gordan Krešić
On 15. 03. 2021. 00:54, Craig Mitchell wrote: I think I'm missing something.  Spring Boot Native seems to make an exe by embedding a JVM (GraalVM).  I don't understand what that has to do with JPA / Hibernate?  Wouldn't it work just as well with jOOQ and others? GraalVM, similar to GWT,

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-14 Thread Craig Mitchell
> > *For all Non-Spring-Devs: *Spring Boot *Native* Beta is there! > >- JPA / Hibernate with Spring Data supported and Hibernate Reactive >for Spring Data also available. Damn *my analysis article is just >right*, *Hibernate for 2021 *:-) > > I think I'm missing something.

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-12 Thread Oleg Ravun
No one mentioned proxy issues with Hibernate. Am I the only one who suffers from that? Basically with those proxies you never know if your code will actually work in production because Hibernate sometimes returns proxies sometimes it does not. I have even seen (though years ago) a mix of

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-12 Thread lofid...@gmail.com
I'm still inside the flame ;-) *For all Non-Spring-Devs: *Spring Boot *Native* Beta is there! - https://spring.io/blog/2021/03/11/announcing-spring-native-beta - Starting a REST service just in *40ms*... - JPA / Hibernate with Spring Data supported and Hibernate Reactive for

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-11 Thread Thomas Broyer
On Thursday, March 11, 2021 at 3:39:37 PM UTC+1 Luis Fernando Planella Gonzalez wrote: > We use JPA with EclipseLink. Gave us a lot better performance than > Hibernate when we compared both. > The thing I like more with ORMs is that they are class-first. One creates > the entity, annotates

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-11 Thread Luis Fernando Planella Gonzalez
We ended up using no plugins for GWT with Gradle. Even if there are some, none of them fit well. Luckily, GWT compiler has a nice CLI, so... Also, we make the gwt a subproject, as we don't use GWT RPC anyway. This helps keeping gwt-dev out of any runtime classpath!!! Below is a trimmed version

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Vegegoku
What i mean is that mockito make it very easy to mock things, that we end up mocking everything, have we seen tests that mock every argument going into the constructor? have we seen concrete implementation being mocked without introducing an abstraction level that opens the doors for other

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Michael Conrad
At work we started out with Maven and quickly discovered you couldn't do dependencies to other projects unless they shared a parent POM. Things quickly started becoming unwieldy. Discovered "loosely coupled" projects with Gradle. We haven't looked back. On Wed, Mar 10, 2021 at 10:25 AM Thomas

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Chani Liet
yeap, Spring is nice, but i prefer Quarkus - https://quarkus.io/ On Wed, Mar 10, 2021 at 4:47 PM Josselin Bardet wrote: > > > Le mer. 10 mars 2021 à 16:42, Vegegoku a écrit : > >> >>> >>> Spring: I think the thing I dislike the most about Spring is what many >>> people like about it: it's an

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread David Nouls
I have the opposite experience with Mockito. By using mockito I am improving my designs so that they become simple to use and easy to test. That in combination with an injection framework (using Guice/Jukito) makes it really easy to compose software and to test in isolation. You do have to

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Juan Pablo Gardella
Hi Vegeoku, Could you please elaborate on this? *IMHO tests should help you improve the design of your code, Mockito is the opposite of that, Once I converted some test cases to use manually writing test doubles (spies, fakes, stubs) instead of Mockito to show the other guy how it reduced the

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Josselin Bardet
Le mer. 10 mars 2021 à 16:42, Vegegoku a écrit : > >> >> Spring: I think the thing I dislike the most about Spring is what many >> people like about it: it's an entire, wide, and fat, ecosystem. You can >> hardly use one piece of Spring without using everything else; I mean, each >> Spring piece

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Vegegoku
Even if it is opinionated, please give us Gradle GWT archetype. :-) On Wednesday, March 10, 2021 at 5:25:47 PM UTC+2 t.br...@gmail.com wrote: > > > On Wednesday, March 10, 2021 at 4:13:03 PM UTC+1 pavel@gmail.com > wrote: > >> We had the same problem with maven but at the end, maven's

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Vegegoku
On Tuesday, March 9, 2021 at 6:28:01 PM UTC+2 t.br...@gmail.com wrote: > On Tuesday, March 9, 2021 at 4:10:44 PM UTC+1 aka...@gmail.com wrote: > >> BTW, >> @Thomas you didn't start a flame war it was just a flame, I got to learn >> few things from this conversation so why not flame the rest

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread Thomas Broyer
On Wednesday, March 10, 2021 at 4:13:03 PM UTC+1 pavel@gmail.com wrote: > We had the same problem with maven but at the end, maven's multi-module > project and profiles helped to solve *hack around* it. > There, fixed it for you  Also see

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-10 Thread pavel....@gmail.com
, whenever we saved > some files. And that was unusable for daily work. > > Em sábado, 6 de março de 2021 às 11:47:36 UTC-3, frank.h...@web.de > escreveu: > >> Nice >> >> lofid...@gmail.com schrieb am Samstag, 6. März 2021 um 09:13:16 UTC+1: >&g

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Craig Mitchell
Also now switching from JPA (Hibernate), to jOOQ. As, while our DB is (currently) fairly simple, it needs to be as fast as possible. So, thanks again! :) -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Craig Mitchell
I was ready to dislike Spingboot, because of its all encompassing nature. But it just works, and works well. Unlike Maven, grrr, Maven. Most informative flame war I've been in. Thanks all, I've learnt a lot. :) -- You received this message because you are subscribed to the Google Groups

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Thomas Broyer
uple files that glue those things together (Jetty with RestEASY and static files serving, RestEASY and Guice, etc.) from projects to projects, rather than packaging them into a lib that would try to be generic: patterns over frameworks. On Tuesday, March 9, 2021 at 5:47:03 PM UTC+1 Gordan Kr

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Gordan Krešić
On 09. 03. 2021. 17:28, Thomas Broyer wrote: Spring: I think the thing I dislike the most about Spring is what many people like about it: it's an entire, wide, and fat, ecosystem. You can hardly use one piece of Spring without using everything else; I mean, each Spring piece builds on top of

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Thomas Broyer
On Tuesday, March 9, 2021 at 4:10:44 PM UTC+1 aka...@gmail.com wrote: > BTW, > @Thomas you didn't start a flame war it was just a flame, I got to learn > few things from this conversation so why not flame the rest of the list? > Really? Let's go. Spring: I think the thing I dislike the

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Douglas de Oliveira Mendes
I wouldn't say you don't have to learn anything because it does magic. I like hibernate to keep code clean but gotta know what's going on to keep performance fine and get rid of concurrency issues, overwriting data.. Em ter., 9 de mar. de 2021 04:29, Craig Mitchell escreveu: > Indeed it's a

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Vegegoku
I don't like Hibernate/JPA because of the horror and terror it gave me during my career years. Yet Hibernate appeared in times when we were having a hard time dealing with database and SQL in java, mapping/parsing query results, or even constructing the queries themselves and I have seen it

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Thomas Broyer
On Tuesday, March 9, 2021 at 8:29:33 AM UTC+1 Craig Mitchell wrote: > Indeed it's a joke, cannot be otherwise: it says you should use Hibernate >> in 2021! (in the conclusion, it even says you should learn it) >> (I won't give my opinion on the others in the list, don't want to start a >>

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Raúl Pampliega Mayoral
We are using .Net in our backend with NHibernate and i must to say that using Linq To Sql is very helpful and let you have all queries strong typed. We also have to mantain a small part of queries with ado directly due to performance. I don't think using something like Hibernate would be bad

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread lofid...@gmail.com
@TBroyer: of course we are going to start a flame war for Hibernate ;-) "Hibernate" is the most searched word in Google 2021... OK, I mean "how to hibernate your PC" :-) I agree with @Gordan, it depends on the use case. Strangely enough, we have today ORM also on Android *Room*

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Michael Conrad
JDBI3 is the answer to ORMS. It's not an ORM. per-se :-) And the Sql Object component allows strong typing in a much easier way. You use annotations to define sql statements with parameters in interface classes. Or, optionally, sql files. https://jdbi.org/ At work I ended up converting all

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-09 Thread Gordan Krešić
On 09. 03. 2021. 08:29, Craig Mitchell wrote: Too late.  Flame war!  ;P  But seriously, what's wrong with using Hibernate as JPA provider?  Okay, yes, there is nothing to learn, it does all its magic behind the scenes, but is there something better?  Or maybe using JPA is bad, and we go back

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-08 Thread Craig Mitchell
> > Indeed it's a joke, cannot be otherwise: it says you should use Hibernate > in 2021! (in the conclusion, it even says you should learn it) > (I won't give my opinion on the others in the list, don't want to start a > flame war ) > Too late. Flame war! ;P But seriously, what's wrong

Re: New Article "10 Best Java Frameworks to Use in 2021"

2021-03-08 Thread lofid...@gmail.com
Hi Luis, thanks for the input. Actually I wrote the article just for fun... It's somekind of parody for weekend... ;-) I see a lot such an article "Top 10 Java Frameworks...", I thought I could also do it but more for GWT popularity (== is not dead story) ;-) Yes, sure, if Gradle wo

New Article "10 Best Java Frameworks to Use in 2021"

2021-03-06 Thread lofid...@gmail.com
Just finished my article *"10 Best Java Frameworks to Use in 2021"* There are a lot of such article outside but this time GWT is not dead  http://bit.ly/JavaFrameworksBest2021 Enjoy and have a nice weekend, Lofi -- You received this message because you are subscribed to the Goo

Re: GWT MVP Frameworks

2019-05-22 Thread Frank Hossfeld
I forget to mention: Another intresting MVP framework is * Nalu: https://github.com/NaluKit/nalu and * Domino-mvp: https://github.com/DominoKit/domino-mvp -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and

Re: GWT MVP Frameworks

2019-05-22 Thread Frank Hossfeld
I forget to mention: Another intresting MVP framework is Nalu: https://github.com/NaluKit/nalu -- 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 MVP Frameworks

2018-01-03 Thread Frank Hossfeld
I am one of the contributors of mvp4g. Yeah, that's right, mvp4g uses GIN. That's something I don't like, but trying to remove GIN is a breaking change. So we decided, as we startet with mvp4g2, to keep the numbers of dependencies small. mvp4g2 only uses Elemental 2 (Place management). It does

Re: GWT MVP Frameworks

2017-10-13 Thread Subhrajyoti Moitra
w but too heavy for general and ever-evolving use-cases and has a > steep learning curve viz. custom CDI/IOC). > mvp4g > <https://www.google.com/url?q=https%3A%2F%2Fgithub.com%2Fmvp4g%2Fmvp4g=D=1=AFQjCNFZVdRFuONp-UOuqjqn34NLz-YTdg> > again > uses GIN. > > Also, IMO JS framework

Re: GWT MVP Frameworks

2017-10-13 Thread hy
l?q=https%3A%2F%2Fgithub.com%2Fmvp4g%2Fmvp4g=D=1=AFQjCNFZVdRFuONp-UOuqjqn34NLz-YTdg> again uses GIN. Also, IMO JS frameworks like vue, react or polymer are very good for creating isolated custom components and rendering HTML. However for MVP/data-flow/binding/architecture they

Re: GWT MVP Frameworks

2017-10-13 Thread David
I'm also depending on GWTP for my projects. It would be nice if it somehow got migrated to Dagger, but I guess the company behind it stopped doing GWT work. I'm considering moving to a mix of GWT with Vue.js in combination with Vue-routing. On Fri, Oct 13, 2017 at 4:14 PM Subhrajyoti Moitra

Re: GWT MVP Frameworks

2017-10-13 Thread Subhrajyoti Moitra
U can try http://erraiframework.org/ or https://github.com/mvp4g/mvp4g as alternatives. On Fri, Oct 13, 2017 at 7:30 PM, hy wrote: > Is anyone using any GWT MVP based framework? > > We have been using GWTP, however the development on it seems to be stalled > and it still

GWT MVP Frameworks

2017-10-13 Thread hy
Is anyone using any GWT MVP based framework? We have been using GWTP, however the development on it seems to be stalled and it still depends on GIN, which is also not under active development. GWTP is extremely powerful, however a lack of investment in it recently has been concerning for us

Re: Java Web Frameworks Index by RebelLabs

2017-03-22 Thread Pavlo Iatsiuk
Pretty strange not to see ZKoss in the list, because if you want to write client side on java - there are just few options. -- 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

Re: Java Web Frameworks Index by RebelLabs

2017-02-20 Thread David
A bit a strange mix of technologies. Spring Boot is not even a Web Framework. I would rather see comparisons between GWT, Vaadin (based on GWT for some parts), Angular2 and ReactJS. Those 2 last frameworks are not Java, but GWT could allow you to use them with JsInterop. On Mon, 20 Feb 2017 at 08

Java Web Frameworks Index by RebelLabs

2017-02-19 Thread Ali Jalal
Hi, *Link: https://zeroturnaround.com/rebellabs/java-web-frameworks-index-by-rebellabs/ <https://zeroturnaround.com/rebellabs/java-web-frameworks-index-by-rebellabs/>* -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To

Re: Looking for GWT graphical editing Frameworks

2017-01-05 Thread Ani
Thanks a lot , I will look into this. Requirement wise I am looking for something similar. On Thursday, January 5, 2017 at 5:12:40 AM UTC-8, manstis wrote: > > We're developing a generic diagram editing framework over at the Drools > community: >

Re: Looking for GWT graphical editing Frameworks

2017-01-05 Thread Ani
; >> HI >> I am in the process of developing a Diagram editor based on GWT. >> Something which has the ability to drag and drop onto a canvas and create >> a flow diagram , with complex shapes. >> Looking for some pointers here in terms of frameworks or libraries &g

Re: Looking for GWT graphical editing Frameworks

2017-01-05 Thread Aniruddha Shevade
complex shapes. >> Looking for some pointers here in terms of frameworks or libraries >> which can be used. >> I do come from an eclipse background, which offers frameworks such as >> the GEF ( graphical editing framework ) >> Any pointers are appreciated. >>

Re: Looking for GWT graphical editing Frameworks

2017-01-05 Thread Max Fromberger
a flow diagram , with complex shapes. > Looking for some pointers here in terms of frameworks or libraries which > can be used. > I do come from an eclipse background, which offers frameworks such as the > GEF ( graphical editing framework ) > Any pointers are appreciated. > > Be

Re: Looking for GWT graphical editing Frameworks

2017-01-05 Thread manstis
We're developing a generic diagram editing framework over at the Drools community: https://github.com/droolsjbpm/kie-wb-common/tree/master/kie-wb-common-stunner This is based on Lienzo and supports generic graphs, complete with resizing elements, connecting elements, grouping etc. We're

Re: Looking for GWT graphical editing Frameworks

2017-01-05 Thread Alberto Mancini
eate > a flow diagram , with complex shapes. > Looking for some pointers here in terms of frameworks or libraries which > can be used. > I do come from an eclipse background, which offers frameworks such as the > GEF ( graphical editing framework ) > Any pointers are appreciated. >

Re: Looking for GWT graphical editing Frameworks

2017-01-05 Thread Frank
eveloping a Diagram editor based on GWT. > Something which has the ability to drag and drop onto a canvas and create > a flow diagram , with complex shapes. > Looking for some pointers here in terms of frameworks or libraries which > can be used. > I do come from an eclipse

Looking for GWT graphical editing Frameworks

2017-01-04 Thread Ani
HI I am in the process of developing a Diagram editor based on GWT. Something which has the ability to drag and drop onto a canvas and create a flow diagram , with complex shapes. Looking for some pointers here in terms of frameworks or libraries which can be used. I do come from an eclipse

Re: JavaScript charting frameworks supported by GWT

2014-12-03 Thread Ronan Quillevere
working on a new wrapper but it is still a work in progress (http://highcharts4gwt.github.io/) On Thursday, November 13, 2014 6:53:15 PM UTC+1, Samir Samati wrote: Hi every body, i would like to know where can i find a list of all JavaScript charting frameworks that are supported by gwt

Re: JavaScript charting frameworks supported by GWT

2014-12-03 Thread Jens
Just keep in mind that only the GWT wrapper of Highcharts is Apache license. To use the GWT wrapper you also need Highcharts/Highstock itself which has the following license: *Both Highcharts and Highstock are licensed for free for any personal or non-profit projects under the Creative

Re: JavaScript charting frameworks supported by GWT

2014-11-14 Thread Ümit Seren
GWT supports any javascript charting frameworks through JSNI. For convenience some of those charting libraries have a GWT wrapper (i.e Highcharts, D3js, google charts, etc) On Thursday, November 13, 2014 6:53:15 PM UTC+1, Samir Samati wrote: Hi every body, i would like to know where can i

Re: JavaScript charting frameworks supported by GWT

2014-11-14 Thread Jens
Beside already mentioned libs there is also GFlot a wrapper for Flot. https://github.com/nmorel/gflot -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email

JavaScript charting frameworks supported by GWT

2014-11-13 Thread Samir Samati
Hi every body, i would like to know where can i find a list of all JavaScript charting frameworks that are supported by gwt. Thnx -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails

http://zeroturnaround.com/rebellabs/the-2014-decision-makers-guide-to-java-web-frameworks/3/

2013-11-06 Thread salk31
http://zeroturnaround.com/rebellabs/the-2014-decision-makers-guide-to-java-web-frameworks/3/ Apparently GWT is insecure because it uses JavaScript. Am I reading this wrong or is it a bit silly? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: http://zeroturnaround.com/rebellabs/the-2014-decision-makers-guide-to-java-web-frameworks/3/

2013-11-06 Thread Andreas Horst
-guide-to-java-web-frameworks/3/ Apparently GWT is insecure because it uses JavaScript. Am I reading this wrong or is it a bit silly? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails

Re: http://zeroturnaround.com/rebellabs/the-2014-decision-makers-guide-to-java-web-frameworks/3/

2013-11-06 Thread David
I could be wrong, but I have the impression that frameworks like GWT makes security a lot easier since there are less server roundtrips needed so less attack vectors. Every servlet we write is a potential target for hackers. The only thing of course is that you need to be smart enough

Re: Need Feedback on charts frameworks for GWT

2013-09-11 Thread Aryan
Check out GWT-RCharts hosted on http://code.google.com/p/gwt-rcharts/ and demo at http://gwt-rcharts.appspot.com/ On Tuesday, 22 March 2011 05:38:28 UTC+5:30, Romain BIARD wrote: Hi everybody, I'm looking for different feedback about frameworks which provides client-side charts

Re: Grid Frameworks, Responsive Design and GWT

2013-08-06 Thread Jens
Somehow depends on the app you want to create but IMHO choosing the mobilewebapp strategy is the most flexible. It allows you to create very distinct UIs by rearranging pretty much everything so it best fits the device category. Using responsive design can limit you and does not fit in all

Re: Grid Frameworks, Responsive Design and GWT

2013-08-06 Thread Ümit Seren
My 2 cents: Creating a really good responsive web-app which has good UX on desktop as well as mobile is really hard. That's the reason why many people advocate to go mobile first and add features via progressive enhancements for bigger viewports. That can be done with

Grid Frameworks, Responsive Design and GWT

2013-08-05 Thread Lavie Tobey
Hello GWT Community! I'm looking to gather the collective knowledge of this community to answer a subjective question regarding GWT. I'm starting to rewrite our suite of applications from scratch (i.e. version next) and our group is mainly made up of GWT engineers, so GWT will be the basis

Re: Grid Frameworks, Responsive Design and GWT

2013-08-05 Thread Thomas Broyer
On Monday, August 5, 2013 11:52:59 PM UTC+2, Lavie Tobey wrote: Hello GWT Community! I'm looking to gather the collective knowledge of this community to answer a subjective question regarding GWT. I'm starting to rewrite our suite of applications from scratch (i.e. version next) and our

Announcing a IneForm/IneFrame, frameworks for highly productive GWT development

2011-11-21 Thread István Szoboszlai
Dear All, I would like to introduce our GWT frameworks IneForm/IneFrame. In a few words: - IneForm: an easy to use tool for data presentation and data manipulation through generated but customizable forms and tables. - IneFrame: a frame for any web application, that supports authentication

GWT frameworks?

2011-07-25 Thread flyingb...@gmail.com
Is there no more new big frameworks for gwt? Only ones from this three choices? Smart GWT, GXT, and Vaaldin? I like gxt the best when I tried it before because of speed and widget options. Smart GWT was slow for me I not sure if they improved that. Is there better frameworks now for gwt

Re: GWT frameworks?

2011-07-25 Thread joe kolba
with gwt mvc. On Mon, Jul 25, 2011 at 12:57 PM, flyingb...@gmail.com flyingb...@gmail.com wrote: Is there no more new big frameworks for gwt? Only ones from this three choices? Smart GWT, GXT, and Vaaldin? I like gxt the best when I tried it before because of speed and widget options

Re: GWT frameworks?

2011-07-25 Thread Jeff Larsen
I looked into SmartGwt, and I'll just say it wasn't for me. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/Wa0pSdu3S5AJ. To post to this group,

Re: GWT frameworks?

2011-07-25 Thread Giuseppe La Scaleia
Give a look to gxt. It's a powerfull gwt library with rich components 2011/7/25 Jeff Larsen larse...@gmail.com I looked into SmartGwt, and I'll just say it wasn't for me. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: GWT frameworks?

2011-07-25 Thread gwt.user
Like Joe said it depends. If you are looking for plug-ins free widgets GXT is the best imho. But i will put gwt4air in that list. At my company we are developing mostly Flex applications. gwt4air saved us for having to deal with ActionScript :) -- You received this message because you are

Re: GWT frameworks?

2011-07-25 Thread joe kolba
I would be careful when calling them frameworks. They are more collections of custom widgets. For frameworks any of them libraries can use different frameworks. On Mon, Jul 25, 2011 at 2:26 PM, gwt.user gwt.u...@yahoo.fr wrote: Like Joe said it depends. If you are looking for plug-ins free

Re: GWT frameworks?

2011-07-25 Thread Russ
personally, for mvp style apps, I have been using GWTP and loving it. On Mon, Jul 25, 2011 at 2:31 PM, joe kolba joekolb...@gmail.com wrote: I would be careful when calling them frameworks. They are more collections of custom widgets. For frameworks any of them libraries can use different

Re: GWT frameworks?

2011-07-25 Thread Tomasz Gawel
is a framework - and while i am not fully convinced to it's swing-like widget/panel architecture (and gxt or smart gwt made it even worse), i got used to it. what i found really missing in gwt was selector engine. moreover, it's fast growing framework, and thus leaving less area for frameworks. pure

Re: Need Feedback on charts frameworks for GWT

2011-05-04 Thread bonjoe
, Romain BIARD biard.rom...@gmail.com wrote: Hi everybody, I'm looking for different feedback about frameworks which provides client-side charts, especially well integrated with GWT MVP Architecture (I managed to persuade my client to migrate to GWT 2.2.0 :p ) . I don't know which solution

Re: Need Feedback on charts frameworks for GWT

2011-05-04 Thread nino ekambi
, I'm looking for different feedback about frameworks which provides client-side charts, especially well integrated with GWT MVP Architecture (I managed to persuade my client to migrate to GWT 2.2.0 :p ) . I don't know which solution fit the best and the community didn't discuss about

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread rjcarr
at canvas based tools like flot. Good luck! On Mar 21, 5:08 pm, Romain BIARD biard.rom...@gmail.com wrote: Hi everybody, I'm looking for different feedback about frameworks which provides client-side charts, especially well integrated with GWT MVP Architecture (I managed to persuade my client

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread Martin Trummer
I want to do some client rendering and for this I've been looking at canvas based tools like flot. Good luck! On Mar 21, 5:08 pm, Romain BIARD biard.rom...@gmail.com wrote: Hi everybody, I'm looking for different feedback about frameworks which provides client-side charts, especially

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread opn
What about clientsidegchart? (http://code.google.com/p/ clientsidegchart/?redir=1) I took a look at it and it looks kind of complex to create the charts, but the style is pretty nice! Anyone tried those and can tell if the library worked for him / her? Regards -- You received this message

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread nino ekambi
Looks pretty ok but the API is kind of complicate imho. It should me more simpler to do that. 2011/3/23 opn open...@gmx.net What about clientsidegchart? (http://code.google.com/p/ clientsidegchart/?redir=1) I took a look at it and it looks kind of complex to create the charts, but the style

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread Romain BIARD
Ok first of all thanks for sharing your XP ;) @Martin Trummer In fact I don't have internet access while most of applications we are developing are located on client's intranet :( I'll take a look on chronoscope :) @Daniel Renner GXT was my first idea but GPLv3 or Commercial License don't fit my

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread Brian Reilly
There was an announcement just yesterday of a visualization library, Protovis-GWT. http://groups.google.com/group/google-web-toolkit/browse_thread/thread/6857b43f4563a335 It looked pretty nice from the examples. I haven't looked at the API yet, though. -Brian On Wed, Mar 23, 2011 at 9:52 AM,

Re: Need Feedback on charts frameworks for GWT

2011-03-23 Thread Gibson
BIARD biard.rom...@gmail.com wrote: Hi everybody, I'm looking for different feedback about frameworks which provides client-side charts, especially well integrated with GWT MVP Architecture (I managed to persuade my client to migrate to GWT 2.2.0 :p ) . I don't know which solution fit

Re: Need Feedback on charts frameworks for GWT

2011-03-22 Thread Uemit
I think it doesn't make any difference if you use MVP architecture or not for charts. You will treat them as any other widgets. If you need default charts (scatterchart, barchart, etc) I can recommend to use google's visualization API ( http://code.google.com/apis/charttools/index.html). For

Re: Need Feedback on charts frameworks for GWT

2011-03-22 Thread Daniel Renner
. There is no best solution for every problem, only one best practise for a specific problem ;) . Greetings On 22 Mrz., 01:08, Romain BIARD biard.rom...@gmail.com wrote: Hi everybody, I'm looking for different feedback about frameworks which provides client-side charts, especially well integrated with GWT

Need Feedback on charts frameworks for GWT

2011-03-21 Thread Romain BIARD
Hi everybody, I'm looking for different feedback about frameworks which provides client-side charts, especially well integrated with GWT MVP Architecture (I managed to persuade my client to migrate to GWT 2.2.0 :p ) . I don't know which solution fit the best and the community didn't discuss about

Re: GWT Special Features compared to other Frameworks

2011-01-19 Thread Didier Durand
Hi, 1 point related to your point 1: java means compilation, i.e strong type checking at compile time (even at write time if you use Eclipse that compiles in real-time). The difference in productivity is huge 1 point related to your point 3: you can not only integrates runtime frameworks

Re: GWT Special Features compared to other Frameworks

2011-01-19 Thread jhulford
On Jan 18, 3:26 pm, Noor baken...@gmail.com wrote: 2. The developer does not have to be a guru in browser incompatibilities to develop web sites which works on a variety of browsers because incompatibilities are handled by GWT through differed bindind While GWT does shield you from some

Re: GWT Special Features compared to other Frameworks

2011-01-19 Thread Jeff Schwartz
+1. Your raise excellent points. Anyone approaching GWT with the idea that they don't need to have at least a basic understanding of HTML, CSS and Javascript is going to be very disappointed. As great as GWT is, and it is great, it cannot always hide the fact that you are developing for the

GWT Special Features compared to other Frameworks

2011-01-18 Thread Noor
Hi, I am on searching special features of GWT which are present only in GWT and not in other web framework. I am a student and I am not well acquainted to the many web frameworks on the market, so if u can help me increasing my list of special GWT features, it would be a great help. Some which i

Re: GWT Special Features compared to other Frameworks

2011-01-18 Thread Ryan Mehregan
I am afraid your first point is not a correct assessment. Programming the Web is a very broad category which encompasses a plethora of Java Web Frameworks that emerged over the past decade many of them now obsolete. Like many of them MVC frameworks(Struts, WebWork, Tapestry, SpringMVC/ WebFlow

Re: GWT Special Features compared to other Frameworks

2011-01-18 Thread Ryan Mehregan
I do not think Collaborative Working is a feature or benefit of using GWT. There are many tools that facilitate collaborative work, including discussion groups, distributed version control systems, google docs, instant messaging programs, or many project and team management web applications that

Re: GWT Special Features compared to other Frameworks

2011-01-18 Thread Ryan Mehregan
I am afraid your first point is not a correct assessment. Programming the Web is a very broad category which encompasses a plethora of Java Web Frameworks that emerged over the past decade many of them now obsolete. Like many of the MVC frameworks (Struts, WebWork, Tapestry, SpringMVC/WebFlow

Re: What are some of the most valuable frameworks in your project?

2010-09-01 Thread Olivier TURPIN
Well i tried mvp4g in late 2009, GWTP and GUIT were not available... only gwt-presenter. So i made proof of concept with both frameworks and i really like the way mvp4g did. Simple configuration, annotation facilities for binding, splitability, nice support... and i like the fact

Re: What are some of the most valuable frameworks in your project?

2010-08-30 Thread Ikari
Gin and Guice for dependency injection. GWT-presenter as realization of MVP pattern, GWT-dispatch for client-server communication. So far that's fine. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: What are some of the most valuable frameworks in your project?

2010-08-30 Thread Jeff Larsen
Thanks everyone for your responses they've been a huge help. I noticed a lot of people using gwtp and no mention of MVP4G. What made your decision to go with gwtp instead of mvp4g? On Aug 29, 2:14 pm, Ikari igen...@gmail.com wrote: Gin and Guice for dependency injection. GWT-presenter as

Re: What are some of the most valuable frameworks in your project?

2010-08-29 Thread Sebastian Rothbucher
Jeff, we're getting along quite well with GWT on the client side and Spring on the server side: Data definitions (POJOs) are shared. Plus: Using the GWT Service servlet to do nothing but call a spring service (which can then do everything spring is capable of) has proven a quite stable solution..

Re: What are some of the most valuable frameworks in your project?

2010-08-28 Thread Thomas Broyer
On 28 août, 07:08, jocke eriksson jock...@gmail.com wrote: Gin :) love it +1 GIN, and nothing else: http://code.google.com/p/google-gin I just started a series of articles on GWT 2.1 Places to get you started with the concepts and APIs (second article to be published hopefully this week-end,

Re: What are some of the most valuable frameworks in your project?

2010-08-28 Thread PhilBeaudoin
Client-side: Gin + GWTP Server-side: Guice + Objectify + GWTP On Aug 28, 8:10 am, Thomas Broyer t.bro...@gmail.com wrote: On 28 août, 07:08, jocke eriksson jock...@gmail.com wrote: Gin :) love it +1 GIN, and nothing else:http://code.google.com/p/google-gin I just started a series of

Re: What are some of the most valuable frameworks in your project?

2010-08-28 Thread marius.andreiana
+14 on GWTP :) I've started with it 3 days ago and got most of the infrastructure setup ready to scale a large project, including i18n. On Aug 28, 6:31 pm, PhilBeaudoin philippe.beaud...@gmail.com wrote: Client-side: Gin + GWTP Server-side: Guice + Objectify + GWTP On Aug 28, 8:10 am,

What are some of the most valuable frameworks in your project?

2010-08-27 Thread Jeff Larsen
I'm about to embark on a new GWT app and am curious what you all think about some of the following utilities. I don't think I will be able to use Roo, but I am looking into 2.1. I must admit that I do not fully understand how all the new MVP pieces fit together or the new dispatching mechanism.

  1   2   >