I have to develop one desktop base application(it has no request/response) and it has many classes.
my Main/Controller class read (*.properties)
file,
like
allExtensions = properties.getProperty("ReportFileExtension");
and i have mention some file extension in .properties
file like ReportFileExtensionn = .pdf,.doc
etc.
This key read from .properties
file in Main class and i want use this key value in other class without passing argument in any method or constructor.
is it spring provide a local storage ? so i can use to store attribute and use it other class.
Thanks in Advc.