开发者

How to externalize a Spring MessageSources bundle outside the WAR

开发者 https://www.devze.com 2022-12-08 06:29 出处:网络
I have to externalize the Spring MessageSources bundle for i18n support (properties files) outside the classpath in order to modify properties more easily. How can I do 开发者_StackOverflow中文版that

I have to externalize the Spring MessageSources bundle for i18n support (properties files) outside the classpath in order to modify properties more easily. How can I do 开发者_StackOverflow中文版that ?

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name="basename" value="test-messages"/>

Thanks!


We have built a message source implementation that looks up messages in the DB. What you have to do is create a MessageSource implementation that inherits from spring's AbstractMessageSource (in order to gain all features, see javadoc).

You have to implement at minimal the abstract method 'resolveCode(String, Locale)' (but implementing 'resolveCodeWithoutArguments(String, Locale)' will increase your performances), which delegates to a DAO pointing to that simple table, with a definition such as this:

table translation (
  translation_id number pk
  code varchar(20)
  locale varchar(5)
  translation varchar(100)
)

code and locale form a unique index.

And you're done. Of course, you will add some cache capabilities, and provide "locale degradation" behaviour (i.e. if "en_US" is not found, try "en"), either at dao- or MessageSource-level.

This works perfectly.


Check this thread for information regarding this issue, but I think is not a good practise to have files outside the tomcat context as you never know where it is going to be deployed your application.

But in case you need, you'll find some pretty nice solutions there.

0

精彩评论

暂无评论...
验证码 换一张
取 消