What would be my options for business tier design if I decided not to go EJB route and still wanted to have the same services a standard EJB container provides (transaction management, security, pools of various kinds, etc)?
Is there any data on current market share of non-EJB solutions for the problem at hand, like Spring, for instance?
Thanks,
Borys
-
EJB alternatives for middle tier functionality (3 messages)
- Posted by: Borys Burnayev
- Posted on: December 15 2005 08:09 EST
Threaded Messages (3)
- Spring by Joao Cerdeira on December 16 2005 04:48 EST
- Spring by Sergey Pomytkin on December 16 2005 16:57 EST
- Spring or not? by archana reddy on January 01 2007 14:42 EST
-
Spring[ Go to top ]
- Posted by: Joao Cerdeira
- Posted on: December 16 2005 04:48 EST
- in response to Borys Burnayev
Try Spring
works well for me, sorry great
Spring is a wondefull framework.
Good Support, excelent docs, excelent books
(books i recomend Pro Spring) ;)
http://www.springframwork.org -
Spring[ Go to top ]
- Posted by: Sergey Pomytkin
- Posted on: December 16 2005 16:57 EST
- in response to Borys Burnayev
Spring will do most of the tricks.. if you don’t need clustering – session replication, high-available pinned (singleton) services, cluster-wide application context.. from other side I might just don’t know good way to do them with spring ? -
Spring or not?[ Go to top ]
- Posted by: archana reddy
- Posted on: January 01 2007 14:42 EST
- in response to Sergey Pomytkin
i currently use struts + business objects + dao + postgres(db). We have a legacy app. working fine using the above but for a new feature app, i want to replace the singletons in business obj.s with spring. My main concern for using spring are as follows: 1. If i use spring in business layer, can my java api's on back end use the spring classes to connet to postgres without any connection to tomcat (app server) 2. i have a small database..is it worth trying a new framework (spring) , just to replace singletons? How efficient is spring with struts? Anyone with suggestions are welcome. Thanks in advance.