I am trying to learn Spring Framework, before that I used to create application with EJBs
[Web services]->[Business Layer]->[DAO Layer]
| [Database]
in following way
WebServices: Restful API using
Jersey
withurl mappings
, that support both JSON and XML format(news/list.json
,news/list.xml
). Once a request is received by an endpoint(url-mapped-method) it is forwarded to a relevant EJB through lookup(remote, local). EJB process every thing, apply business rules and return result as DTO(Data transfer object),Service then transform the result into required format (JSON, XML)Business Layer: Business Layer (Facade) implemented in
EJB
withremote
andlocal
interfaces, these EJBs can call other EJBs. WebService layer(and/or Timer service and MDBs) can also call any of the EJBs). For timer service related functionality I usedEJB Timer Service
and for Messages usedMessage Drive Bean
and interceptor for logging and auditing.DAO Layer: All the Database related functions(add,edit, delete, search)
JPA/Hibernate
usingEntityManager
are written here (Entity beans and HQL). Seamless Transaction support, each EJB's method (lookup-based) call is treated as a separate transaction and calling methods of DAO layer are part of same transaction(provided that no extra configuration is provided). multiple operations are carried out in a single transaction If one db operation fails all others are roll backed automatically. Each Table is mapped as an entity class with relations etc.
I have worked on Spring MVC
but could not map/understand correctly for above architecture
I know bit about AOP and that I think is a perfect replacement for Interceptors (or at least it work for me)
Now my question is how all these could be replaced in Spring framework?
- Jersey (RestAPi) alternative in Spring>
- EJB alternative in Spring (as EJB supports remoting, each lookup call to a method is treated as a transaction, calls to EJB's method could be intercepted and it comes with state-full and stateless flavors)?
- Timer Service alternative in Spring?
- Message Drive Bean alternative in Spring?
- Interceptor alternative is AOP in Spring (As per my experience and that serve my purpose)
- JPA(entity manager) alternative in spring?
@Path
annotation) or spring mvc if you want to use controllers (@Controller
annotation)!@Service
annotation (or@Repository
for DAO) but you have to handle transactions manually (with annotations for example)package org.springframework.jms
should contains what you need)!Spring is a lighweight library so you can do all you do with EJB but it's more configurable so you will have more work to do the same that EJB do. But this configuration brings you some advantages: you have the hand on it!
This explains Spring and Java EE (which is what you would have used EJBs in) side by side: http://www.slideshare.net/reza_rahman/java-ee-and-spring-sidebyside-34320697
Another cool comparison slideshare: http://www.slideshare.net/kelapure/java-e-evsspringshootout
Spring MVC does this perfectly fine, in my opinion. Just annotate your methods in your controller as the REST apis you want to use.
There is no full alternative. There are several techniques that implement this in parts: Spring remoting for remote calls, Spring transactions as transactions, Spring AOP interceptors for intercepting calls. However, for example XA transactions on remote calls are something you don't get as such in Spring. Spring however works fine with EJBs, so if you prefer them, you can still have them and use Spring in other parts of your software.
Spring task scheduling
Message Listener Containers
There are several levels of interceptors in spring. There are handler interceptors in mvc, there are bean call interceptors like the SpringAutowiringInterceptor, and there are AOP-based interceptors that can be used in multiple layers.
Spring has multiple of these as well. It's actually quite straightforward to just use JPA with Spring-Data, it's designed to integrate to JPA. There are Spring JDBC and other data layer alternatives though if Spring Data is not what you want.