For a couple of years now, I've been working on a self-hosted family budgeting application called Twigs. Seeing as I'm an Android developer, I spend most of my days writing Java and Kotlin. Thus, it seemed like a good idea to stick with the languages I'm most comfortable with for …
Articles tagged with spring boot
Spring Boot Config Priorities
Recently, while working on a job, I ran into an interesting problem with Spring Boot: the configuration files I had defined using the
@PropertySource
annotation were being overridden by theapplication.properties
file, which I had also defined with a@PropertySource
annotation. Why wasn't Spring prioritizing my configuration files correctly …