Reputation: 251
Could anyone please suggest if there is any open source Java EE Notifications framework that meets the following criteria?
Upvotes: 1
Views: 1642
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
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