我使用
Spring来显示属性文件中的消息.我希望能够覆盖< spring:message>标记以使用基于登录用户的数据库中的值.如果此值不存在,我希望它现在默认为属性文件中当前的值.
有人可以帮我这个代码吗?我已经阅读了关于AbstractMessageSource但我不清楚如何实现它.
谢谢
解决方法
您必须实现自定义消息源.它是一个扩展AbstractMessageSource并实现抽象resolveCode(java.lang.String,java.util.Locale)方法的类. SO上有近7000个(它是Grails的解决方案),但我认为从…开始是好点
看看Spring论坛中的那些主题:
> AbstractMessageSource using DB table instead of props file?
> i18n and the database
> database-backed resourcebundle for i18n and dynamically adding new langs
> Database Driven Resource Bundles – Examples and best practice?