I'm a newbie in Spring and I was just wondering if there's a way to set the code below as a bean property?
private static org.apache.log4j.Logger logger = org.apache.log4j.Logger.getLogger(<<Name of Class>>.class.getName());
The intention is to avoid having to code this line in every class.
Thanks.


Reply With Quote