Posts

Showing posts from December, 2018

Spring Boot Application Properties List

The list of Spring Boot Application Common Properties: https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html

Resources for jQuery i18n library

jQuery i18n is a handy library to provide multi-language for your web applications. Below are some useful references: The Advanced Guide to jQuery i18n

Inject git last commit id to SpringBoot project

1) Add git-commit-id-plugin in pom.xml   <build>   <plugins>   <plugin>       <groupId>pl.project13.maven</groupId>       <artifactId>git-commit-id-plugin</artifactId>       <executions>           <execution>               <goals>                   <goal>revision</goal>               </goals>           </execution>       </executions>       <configuration>           <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>           <includeOnlyProperties>               <includeOnlyProperty> git.commit.i...