• 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

Is application development using JSP and java beans not used now because of Struts Springs etc?

 
Ranch Hand
Posts: 2925
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is application development using JSP -java beans not used now because of Struts Spring etc? Should every application be built using frameworks like spring ,struts and nowdays one should not create any application using JSP-java beans.Suppose we have to make a small web application.Should we use frameworks like struts, spring or it should be made just following MVC with JSP-java beans.?
thanks
 
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You don't have to use a framework if you do not want to. But you should be familiar with them to know whether you want to use them or not, or to get a job that requires them.
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Bear Bibeault wrote:You don't have to use a framework if you do not want to.



What Bear says. Sometimes it's just easier to throw something together using Servlets than to jump through all the hoops a framework requires. I have found that if I'm working on a larger project, I would end up reinventing a large part of Struts or Spring eventually (I think this is the web version of Greenspun's Tenth Rule).
 
Ranch Hand
Posts: 530
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I did several small tiny projects which only use JSP, Servlet and Java beans and everything is fine. Don't overuse frameworks because of their hype.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic