关于Spring注入,静态工具类怎么注入属性
beanid="messageSource"已经配好,其他处引用没问题,但是工具类里的注入不好用XML:<beanid="messageUtils"class="xxx....
bean id="messageSource"已经配好,其他处引用没问题,但是工具类里的注入不好用
XML:
<bean id="messageUtils" class="xxx.xxx.MessageUtils" scope="prototype">
<property name="messageSource" ref="messageSource"></property>
</bean>
Java类:
public class MessageUtils {
private static MessageSource messageSource;
public static String getMessage(String key, Object[] msgparams, Locale myLocale) {
return messageSource.getMessage(key, msgparams, myLocale);
}
}
请教高手,问题在哪? 展开
XML:
<bean id="messageUtils" class="xxx.xxx.MessageUtils" scope="prototype">
<property name="messageSource" ref="messageSource"></property>
</bean>
Java类:
public class MessageUtils {
private static MessageSource messageSource;
public static String getMessage(String key, Object[] msgparams, Locale myLocale) {
return messageSource.getMessage(key, msgparams, myLocale);
}
}
请教高手,问题在哪? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询