aspose file tools
The moose likes EJB and other Java EE Technologies and the fly likes framework design for net banking Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "framework design for net banking" Watch "framework design for net banking" New topic
Author

framework design for net banking

jai deep
Greenhorn

Joined: Dec 01, 2004
Posts: 6
Hi all,

I have been given assignment of framework design for very small net banking module.This is my first try to design a framework for this utility. This includes cheque book request, online fund transfer and account summary. This would be in pure J2EE but interacting medium could also be a mobile or a ATM.Here We are using a protocol router to route to front controller of respective device. As struts if request coming from http, J2ME if request coming from mobile ...

Back end for interaction is XML file .

Now my concern is I have seen struts and spring framework but they mostly deals in front end. Is there any framework for middle layer(integration layer) as in my case.

Could anybody help in proceeding with this framework design

with regards
Jai
Valentin Tanase
Ranch Hand

Joined: Feb 17, 2005
Posts: 704
Hi Jai,

Now my concern is I have seen struts and spring framework but they mostly deals in front end.

That�s not entirely true, or at least not about spring. Spring will allow your application to integrate with any other technology, including EJBs, Hibernate, JDO, etc. It also have strong fron-tend support, including JSP tags and its own application controller, but it is not definitely just a front-end framework. It might also be a very good candidate for your banking framework.

Could anybody help in proceeding with this framework design

I would suggest you two things: first please read this article and see if you need an EJB container.
http://www-106.ibm.com/developerworks/library/ibm-ejb/
If the answer is no (or even your answer is yes) you might like considering to use spring & hibernate. This is a very strong combination and looks like what EJB 3.0 want to become in the near future.
Regards.


I think, therefore I exist -- Rene Descartes
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: framework design for net banking
 
Similar Threads
Struts and how to use MVC for it
Does this make sense?
What are the differences btw MVC and Front Controller design patterns?
Struts drawbacks
Reference material on Struts, Hibernate, Business laye