• 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

create method in stateful

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All
Say if i have a create no args method in Stateful Session Beans. & no other create overloaded methods
Will the stateful bean work or is it necessary to overload the create method with args passed
I reckon the args are nothing but identifiers to maintain client specific info.(correct me if i am wrong)
In such a scenario(create with no args) how does the container maintain client specific info
Rgrds
Neerav
 
Ranch Hand
Posts: 1561
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Will the stateful bean work or is it necessary to overload the create method with args passed
no, there's no need to overload it; it will work with a single no-arg ejbCreate.
[ March 05, 2004: Message edited by: Andres Gonzalez ]
 
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Its not necessary to pass Client specific information from the create() method only.
U can do that from yr business methods aswell...
For example when u use a shopping cart.. u would have business methods updating yr Client Specific State on yr Instace variables.
Providing create() methods with arguments is just the containers way of saying....u can initialise the bean with some data right now(During Creation)....or u can do it by yrself later in yr business methods.
I guess that helps....
 
We've gotta get close enough to that helmet to pull the choke on it's engine and flood his mind! Or, we could just read this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic