英文:
Which frameworks can I use with Google GWT for develop a web app?
问题
我想使用GWT创建一个Web应用程序。
该应用程序将访问MYSQL数据库以获取用户信息和其他信息。
在与Google GWT一起使用时,可以使用哪些框架来处理:数据库访问、表单验证、访问控制(注册、登录)、发送电子邮件等?
英文:
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. ?
答案1
得分: 1
开始开发之前,你应该首先创建一个构件。你可以使用:
- 如果你想要在Jetty或Tomcat上运行项目,可以使用gwt-maven-archetypes
- 如果你更喜欢使用Spring Boot,可以使用gwt-maven-springboot-archetype
如果你不想自己创建小部件,可以看一下Domino-UI。
要与服务器通信,我建议使用:Domino-Rest。
对于客户端应用程序,我会选择使用Nalu。(免责声明:我是Nalu的作者)
在服务器端,我会选择使用Spring Boot。你可以生成一个演示项目,该项目使用SpringBoot或Tomcat/Jetty与Nalu和Domino-UI一起使用,详情请参阅这里。
这里有许多关于GWT开发和资源的链接。
如果你有任何问题,可以在GWT Gitter聊天室中提问。
英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论