Java Alert Framework

Are there any โ€œwarningsโ€ (or notifications) in Java there.

In my web application, I want our users to be able to configure which (of the available alerts) they would like to receive and in which (for example, by email).

As a simple example, the user selects an email alert only when his order has been shipped.

+3
source share
2 answers

By default, nothing happens in Java / J2EE. However, it does not require much to implement. Your order processor and other processors may have listeners / observers in the processORder method. They can process emails and other notifications.

jms, OrderProcessor, , / JMS.

+3

JMS . JMS , . email/sms / , .

0

Source: https://habr.com/ru/post/1699590/


All Articles