Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samie/vaadin-javamail-sample
Automatically report all uncought errors in your application
https://github.com/samie/vaadin-javamail-sample
Last synced: 21 days ago
JSON representation
Automatically report all uncought errors in your application
- Host: GitHub
- URL: https://github.com/samie/vaadin-javamail-sample
- Owner: samie
- Created: 2014-11-25T14:20:30.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-25T16:17:19.000Z (almost 10 years ago)
- Last Synced: 2023-03-14T09:15:30.919Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 277 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
vaadin-javamail-sample
===========Simple Vaadin application. This project demonstrates:
* How to catch all uncaught exception in a Vaadin application
* Send email from an Vaadin application using JavaMail (JSR 919) included in Java EE 7 (JSR342)### Running the example:
Make sure you have installed [Maven](http://maven.apache.org/) and [Git](http://git-scm.com/) and run the following commands.
git clone https://github.com/samie/vaadin-javamail-sample.git
cd vaadin-javamail-sample
mvn wildfly:run
After these steps you have WildFly application server run on localhost application up and you can test the application at [localhost:8080/vaadin-javamail-sample-1.0-SNAPSHOT](http://localhost:8080/vaadin-javamail-sample-1.0-SNAPSHOT)You can find the code for the application in [ErrorHandlingUI.java](src/main/java/org/vaadin/samples/errormailer/ErrorHandlingUI.java).
### License
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.For more information, please refer to <[http://unlicense.org/](http://unlicense.org/)>