DevOps

[Java] Dependency management in Gradle

2020-12-31 C.H. Ling 0

Dependency management is one of the topic in package management to ensure dependent library (jar / dll / etc) is no interference between each other and it caused compatibility problem. Besides, it can detect vulnerability […]

Computing

[Java] Set auto reconnect in Spring data JPA

2020-12-22 C.H. Ling 0

To ensure service availability, Most application nee to restart service to resume. However, auto reconnect is a must requirement to ensure it can self-heal. For Spring data JPA, it can be done without alter code.

No Picture
Computing

[Linux] Setup service dependency

2020-11-27 C.H. Ling 0

For some service, it might have some inter-dependency on other background service. In order to setup it’s relationship, it need to alter the service file as below.

1 4 5 6 7 8 26