| Author |
Access static variable from form bean
|
Michael Quirk
Greenhorn
Joined: Feb 23, 2011
Posts: 4
|
|
Sorry if I'm reposting, but I couldn't find a similar problem.
I'm looking to access a static variable on my jsp that is contained in a form bean. I'm developing with Struts and haven't figured out how to do it on my own.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56153
|
|
|
If it's got static elements it isn't a properly formed bean. Can you not just create an accessor and treat it like a non-static property?
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Michael Quirk
Greenhorn
Joined: Feb 23, 2011
Posts: 4
|
|
|
I could, but I would want to have the fields at least a 'final'. Does this break the form bean standard?
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56153
|
|
Don't give the field a mutator.
Bear in mind that makes the field read-only. For everything.
|
 |
Michael Quirk
Greenhorn
Joined: Feb 23, 2011
Posts: 4
|
|
|
Okay, thanks for the help Bear.
|
 |
 |
|
|
subject: Access static variable from form bean
|
|
|