'Spring Data REST move file rest-messages.properties to database
what needs to be added to spring boot 2, so that the value would first be checked in the database and if not found then searched in the file rest-messages.properties?
Solution 1:[1]
Can you try using JPA to fetch these values from Database table . If the result is not empty you can return value based on present in table. If its empty you can try to return from properties file.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | manoj |
