7/15/2018


 How to access system properties in Thymeleaf template? 

Here is the answer : 

${@environment.getProperty('myPropertyName')}

 

Efficient JSON serialization with Jackson and Java

  📌 Introduction JSON serialization is a fundamental part of modern Java applications — converting Java objects into JSON and back. Jackson...