I want to make my Grails application support only one language, that I can define somewhere, completely ignoring the client\'s headers or the \"lang\" parameter. Is there any wa
This worked for me in order to override the default localResolver bean
beans = { localeResolver(org.springframework.web.servlet.i18n.FixedLocaleResolver) { setLocale(Locale.US) } }