• 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

how to work on javabean

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi every one,

i want to know how to work on javabean as i am usinf netbeans5.5.i want to learn jabvabean.
can anyone tell me about the javabean.what is the basic fundamental of java bean .why we are using.and were i can use.
waht is the advantagehow it makes jsp program easy to maitain.it will be bettter if anyone can expalin me woth example
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Most servlet/JSP tutorials and books cover the use of JavaBeans in a web application.
Have you looked at any?
 
Ranch Hand
Posts: 44
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi

JAVA bean is just like a normal class.well this class contains getter and setter method with respect to attributes you specify in the class.suppose if you have declared any field/attribute as name then its corresponding getter/setter method would be and keep a note that first char of name must be in capital letter. getter / setter function.if you let it be small then during compile time an error will pop up.Most important thing i forgotten to told you is JAVA bean are used to hold data.


BYE
PRAVEEN
 
Ranch Hand
Posts: 893
Tomcat Server Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Maybe you should have a look at the following link

JavaBeans
 
saswat rashmi
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi praveen

thanku for answering

now i have got an idea of java bean .now i want to implement in my program

thanku
 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

if you let it be small then during compile time an error will pop up.



will it really? Your jstl may fail, but java compiler will not complain I guess.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic