We might want to define a custom MessageSource that will return a localized message. If a message is missing, we might want to log information about missing localization (in logs or database) or we might want to provide other way to fetch the localized labels.
In this toturial we will show way to load localization from database.
Step 1
Enable OSIV in VaadinConfig.groovy. Add or comment out the following line.
Create new domain object that will hold localization data. Run grails create-domain app.Message command.
key holds the localization key that we will you in our application to refer a localized string
value is localized string, for example a label in English
locale defines in what language is value string
package app
class Message {
String key
String value
Locale locale
}
Step 3
Create localized key-value pair for given language in BootStrap.groovy.
import app.Message
class BootStrap {
def init = { servletContext ->
Message home = new Message(key: 'home', value: 'Home', locale: Locale.ENGLISH)
home.save(failOnError: true)
}
def destroy = {
}
}
Step 4
Implement a new message source that will use GORM domain object, Message in our case, to load the localized messages. When a value is not found, we will return the key in brackets.
package app.i18n
import app.Message
import org.codehaus.groovy.grails.context.support.PluginAwareResourceBundleMessageSource
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.context.support.AbstractMessageSource
import java.text.MessageFormat
class JdbcMessageSource extends AbstractMessageSource {
@Autowired
PluginAwareResourceBundleMessageSource messageBundleMessageSource
@Override
protected MessageFormat resolveCode(String code, Locale l) {
Message message = Message.findByKeyAndLocale(code, l)
MessageFormat format
if (message) {
format = new MessageFormat(message.value, message.locale)
} else {
format = messageBundleMessageSource.resolveCode(code, l)
if (!format) {
format = new MessageFormat("[$code]", l)
}
}
return format
}
}
Step 4
Open grails-app/conf/spring/resources.groovy and add a new bean messageSource and messageBundleMessageSource that we use to get the localization in case the localization is not found in database.