user243542
user243542

Reputation: 251

Opensource Java EE Notifications Framework

Could anyone please suggest if there is any open source Java EE Notifications framework that meets the following criteria?

Upvotes: 1

Views: 1642

Answers (2)

user3017587
user3017587

Reputation:

Its a pretty late reply although but in case this helps --- https://github.com/Atmosphere/atmosphere. Use play as the backend framework - it uses JPA, Hibernate, restful and on the front layer you can use jquery. Also websockets can be used...

Upvotes: 1

Erhan Bagdemir
Erhan Bagdemir

Reputation: 5327

Well, a framework is a ready-to-use software component which implements commonly used functionality and provides APIs, contracts, interfaces, etc. Using these, developers don't spend much time to implement the same functionality every time when he/she needs this in his/her project. They implement mainly known problems, for example, the problems addressed by (design) patterns (Enterprise Patterns) like association between Data Mapper - ORM and Hibernate.

Your requirement is a standalone project, a business problem. i am seriously sure about that you can't find any framework which fulfills all of these requirements.

But: For (restful) web services, message-driven architecture, you can use Spring Framework. To persist your objects, use Hibernate (there are millions of articles how to integrate Spring und Hibernate). For authorization, you can use Spring Security (formerly Acegi Security).

Upvotes: 0

Related Questions