-
Book Review: Beginning Hibernate by Jeff Linwood, Dave Minter
Sweet introduction to Hibernate. I can’t believe it doesn’t cover migrations (and I’m sure some people will point out migrations it’s not part of Hibernate, but without it, there’s no good way to maintain a production database). The book is on the short side for a computer book and that’s a huge plus. Even then,…
-
Setting (database) credentials on a Spring Boot project, the right way
Searching online for how to set up the credentials to access the database (or any other service) while in development leads to a lot of articles that propose something that works, but it’s wrong: putting your credentials in the application.properties file that you then commit to the repository. The source code repository should not have…