摘要:
kompose is a tool to help users who are familiar with docker-compose move to Kubernetes. kompose takes a Docker Compose file and translates it into Ku 阅读全文
摘要:
Let's say we have a extral app.proporites file which contains some extra configuration: We can read the extra propoties by using @Value("${xxx}") As y 阅读全文
摘要:
Create an ssh key: Copy an SSH key to a remoate server: Then enter your password. To make sure you can SSH into remote server, you can do: Since ssh-c 阅读全文
摘要:
Component Scan is important concept when we want to create Bean. Currently we know what, for the class, we want to create Bean from it, we need to add 阅读全文
摘要:
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer 阅读全文