With GWT, our team has started to realize some of the benefits of OO programming. We have created some reusable components that are common to all of our applications. Here are 3 GWT modules we have produced that aid in our new project setup:
- Login module - This is a module that creates a login dialog, interfaces to our AD implementation on the server, and will maintain the user in session for the applications. It also contains a 'secure servlet' framework that will allow developers to easily specify the roles that can access services.
- Application Info module - This one may seem pretty trivial, but this is a big help with deployments and support. This module displays some build information in the footer of our applications: Application name, application version, code repository version, build number, and build time stamp.
- Logger - This module integrates to a logging/notification framework that will allow developers to get notices about critical failures, and to see all logging for all applications in a single interface.
The ability to drop in a few .jar files, configure a couple of servlets, and be given this rich set of functionality has improved the quality and speed of our application development.
Thanks again Google.
No comments:
Post a Comment