posted 11 years ago
Hi
I am using @Autowired to inject some handler/translator instances(from Translator class) in my classes.
These translators do some exc conversion work once exception is thrown in methods.
Now i have some cases where methods are static methods and i need to handle these exceptions , i mean to translate.
what are my options.
Eg. This is rough code to show what i am trying to do .
I tried to create a static method in my translator class which i can directly call and use in my static methods.But then realized that is also used injected messageSource of Spring.
(Ie. @Autowired MessageSource -used to resolve messages).
Thanks
Lucky