Issue
I want to make a web application with GWT. The application will have a access to MYSQL database for obtain users informations and other. Which frameworks can I use with Google GWT for handle: database access, form validations, accesses control(signup, login), send of email,etc. ?
Solution
To start the development you should first create an artifact. You can use:
- gwt-maven-archetypes if you want to run your project with Jetty or Tomcat
- gwt-maven-springboot-archetype if you prefer Spring Boot
If you do not want to create the widgets by yourself, you should take a look at Domino-UI.
To communicate with the server, I would go with: Domino-Rest.
For the client application I would go with Nalu. (Disclaimer: I am the author of Nalu)
On the server side, I would go with Spring Boot. You can generate a demo project which uses SpringBoot or Tomcat/Jetty with Nalu and Domino-UI here.
Here you will find a lot of links about GWT development and resources.
If you have any questions, the GWT Gitter room is a good place to ask.
Answered By - El Hoss
Answer Checked By - Terry (JavaFixing Volunteer)