Implementing an event in CDI
As an example of implementing an event in CDI, we think about asynchronous CDI and imagine a scene in which we want to create an application that makes it possible to upload three types (or extensions) of file—this includes ZIP, JPG, and PDF extensions. Depending on the extension received at the request, it is intended that one event is launched and one observer will save its file on a disk using an asynchronous process. Each extension will have an observer, which will have an algorithm making it possible to save the file on a disk. To develop this example, we have the following classes:
FileUploadResource
: This is a class that represents the resource that receives all the requests in order to upload and launches respective events according to the file extension.ÂFileEvent
: This is a bean that contains the file data and is sent to an event.ÂFileHandler
: This is an interface of all the observers. In this example, all classes that react toÂFileEvent
need to implement...