Win a copy of Java Persistence with Spring Data and Hibernate this week in the Spring forum!
  • 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
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

prepare()

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



In my struts.xml I have URL link /app/test/ maps to test() method. I found when I type /app/test?name=xyz&ID=ABC
it went throught the prepare() method, but inside the method it recognizes "name" and "ID" as null, i.e. the values of name and id are not bounded to the instance variable yet. However, in "test()" these values are avaiable already.

Can you tell me why ? And how can I do some cleaning type work in "prepare()" that needs to use instance variables ?

secondly, if instance variables are not available in prepare(), are session variables available ?

Thank you.
 
Ranch Hand
Posts: 485
Eclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Prepare method will be called before you action triggers, so using the parameterAware in prepare method read request Parameters and assign the values. To take care order of interceptors. ServletConfig should be before PreparableInterceptor.
 
Being a smart alec beats the alternative. This tiny ad knows what I'm talking about:
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic