Skip to content

Instantly share code, notes, and snippets.

@krams915
Created December 2, 2012 10:46
Show Gist options
  • Select an option

  • Save krams915/4188140 to your computer and use it in GitHub Desktop.

Select an option

Save krams915/4188140 to your computer and use it in GitHub Desktop.
ApplicationContext JavaConfig snippet
// Provides internationalization of messages
@Bean
public ResourceBundleMessageSource messageSource() {
ResourceBundleMessageSource source = new ResourceBundleMessageSource();
source.setBasename("messages");
return source;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment