Skip to content
Advertisement

Internalization in Spring Boot Application

Sorry for my english. I am working on a spring boot application and I have the following situation. I implemented internalization and I created a following configuration class

JavaScript

Also I have two properties files messages.properties and messages_us.properties.

And I defined a User entity class like this:

JavaScript

When I try to test validation by calling following endpoint

JavaScript

If validation failes, I’m getting all error messages correctly.

JavaScript

But when I use @Valid in a Service class like this

JavaScript

I don’t get the translated messages error messages.

JavaScript

Does anybody knows what’s the issue here? Thanks

Advertisement

Answer

Assuming your saveUser service method is getting called only from the REST API endpoint method “createUser” which is already validating the USER entity. I do not see any need for using @Valid in the service method argument as well. The rest endpoint is already doing the needful.

This post might help you – https://auth0.com/blog/exception-handling-and-i18n-on-spring-boots-apis/

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement