Java Alert Framework - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T02:17:17Zhttp://stackoverflow.com/feeds/question/291817http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/291817/java-alert-framework1Java Alert FrameworkAnurag2008-11-14T23:57:17Z2008-11-15T04:28:46Z
<p>Are there any "Alert" (or Notification) frameworks in Java out there.</p>
<p>In my web application I would like our users to be able to configure which (of the available alerts) they would like to receive and in which (e.g via email) form.</p>
<p>As a simple example, a user chooses to be alerted only via email when his/her order has been shipped.</p>
http://stackoverflow.com/questions/291817/java-alert-framework/292062#2920622Answer by anjanb for Java Alert Frameworkanjanb2008-11-15T03:02:50Z2008-11-15T03:02:50Z<p>hi anurag,</p>
<p>nothing comes by default in java/J2EE. However, it does NOT take much to implement. Your order processor and other processors can have listeners /observers on the processORder method. These can process the email/other notifications.</p>
<p>you can even have a jms message coming out of the OrderProcessor with some info about the particular notification and you send an email/otherAlert to the user after consuming the JMS message.</p>
<p>makes sense ?</p>
<p>BR,<BR>
~a</p>