Skip to content

Instantly share code, notes, and snippets.

@DemkaAge
Created February 14, 2014 11:29
Show Gist options
  • Save DemkaAge/8999603 to your computer and use it in GitHub Desktop.
Save DemkaAge/8999603 to your computer and use it in GitHub Desktop.
JSR-303 custom MessageInterpolator
public class CustomMessageInterpolator extends ResourceBundleMessageInterpolator {
public static final String NEW_PATH_VALIDATION_MESSAGES = "<newPath>/ValidationMessages";
public CustomMessageInterpolator() {
super(new CustomPlatformResourceBundleLocator(NEW_PATH_VALIDATION_MESSAGES));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment