I have a Spring Boot app with a REST API, using Jackson for the JSON view configuration. It works great and I can get all the Spring Boot goodness.
However, I need t
In Spring-boot ypu can use different profiles (like dev
and test
).
Start application with
-Dspring.profiles.active=dev
or -Dspring.profiles.active=test
and use different properties files named application-dev.properties
or application-test.properties
inside your properties
directory.
That could do the problem.