• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Setting standards for Struts based application framework

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Any hints for what would be suitable as a set of standards (they must be well accepted) to set when defining an approach to delivering small applications based on JSP/Servlet technology and BEA/Oracle as the container and persistence combination. So far we have established struts as one standard but would be interested to hear opinions around Velocity, Tiles and anything else we should be thinking of (web services and SOA may come into the picture as well...)
 
Ranch Hand
Posts: 254
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Have you seen the Hibernate? Pretty popular open source implementation of OR mapping.
 
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would vote for:
-Struts, to handle common framework services
-JSTL, to handle presentation in JSPs. It's enough simple as Velocity (not SO simple, to be honest), but a lot more powerful and extensible.
-A good persistence mechanism (yes, Hibernate is a good one, but also JDO).
Forget EJBs in a small application, even if you're already under BEA or Oracle. They would be an overkill.
[ March 17, 2004: Message edited by: Fabrizio Gianneschi ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic