aspose file tools
The moose likes Struts and the fly likes Access static variable from form bean Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Access static variable from form bean" Watch "Access static variable from form bean" New topic
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
    
  13

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
    
  13

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.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel
 
subject: Access static variable from form bean
 
Similar Threads
How to access the gettr/setter method of embeded object inside the form bean.
Can we define static properties in action form bean?
help with variable modifiers
Drop down box in Struts
How does Spring framework handle Singleton in its implementation?