์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Entity
- aws ์ฟ ํฐ
- private subnet ec2 ๋ก์ปฌ ์ ์
- ์๋ฒ ํฐ์ง๋ ๋์ปค ์ฌ์คํ
- prod docker-compose
- ์คํํ๋ ๋ฏธ์ค
- Kafka
- redis ํ ์คํธ์ฝ๋
- s3 log ์ ์ฅ
- ํ๋ก๊ทธ๋๋จธ์ค
- nGrinder
- ํ๋ก๊ทธ๋๋จธ์ค ํฉ์นํ์์๊ธ
- ์ ํจ์ค ์ค์ผ์ค๋ฌ
- s3 ์ด๋ฏธ์ง ์ ์ฅ
- ๋ค์ค ์ปจํ ์ด๋
- s3 ์ด๋ฏธ์ง ๋ค์ด๋ก๋
- ํ๋ก๊ทธ๋๋จธ์ค ์ปฌ๋ฌ๋ง๋ถ
- Codedeploy ์ค๋ฅ
- ํ์ดํผ๋ฐ์ด์
- docker compose
- ์ ํจ์ค ๋น๋ ์ค๋ฅ
- jvm ๋ฐ๋ฐ๋ฅ๊น์ง ํํค์น๊ธฐ
- aws saa ํฉ๊ฒฉ
- redis ์กฐํ
- AWS Certified Solutions Architect - Associate
- docker ps -a
- JPA
- docker
- docker-compose kafka
- ์๋ฐ
- Today
- Total
๋ชฉ๋ก์๋ฐ (2)
๐๐ข๐๐ โ๐๐๐ ๐๐๐ก๐๐ ๐๐๐๐โง
โญ ๋ฐฐ์ด ์ผ์ฐจ์ ๋ฐฐ์ด ๋ณ์๋ ํ ๊ฐ์ ๋ฐ์ดํฐ๋ง ์ ์ฅํ ์ ์์ ๋์ผํ ๋ฐ์ดํฐ ํ์ ์ ์ฌ๋ฌ ๊ฐ ์ ์ฅํ๊ณ ์ถ์ ๊ฒฝ์ฐ ๋ฐฐ์ด ์ฌ์ฉ ์ธ๋ฑ์ค๋ 0๋ถํฐ ์์ ๋ฐฐ์ด ์์ ์ฌ์ด์๋ ์์๊ฐ ์กด์ฌ ํ๋์ ๋ฐฐ์ด ์ด๋ฆ์ ๊ณต์ ํ ์ ์๊ธฐ ๋๋ฌธ์ ๋์ค์ for๋ฌธ๊ณผ ๊ฐ์ด ์ฌ์ฉ ์ ์ธ ๋ฐ์ดํฐํ์ [] ๋ฐฐ์ด๋ณ์์ด๋ฆ = new ๋ฐ์ดํฐํ์ [๋ฐ์ดํฐ ๊ฐ์]; ๋ฐฐ์ด ์ ์ธ์ ์์๊ฐ์ ์๊ณ ์๋ ๊ฒฝ์ฐ ๋ฐ์ดํฐํ์ [] ๋ฐฐ์ด๋ณ์์ด๋ฆ = {..., ..., ..., ..., ...}; ๋ฐฐ์ด ๊ฐ์ฒด๊ฐ ์๋ค๋ฉด null ์ด๊ธฐํ ๊ฐ๋ฅ ๋ฐ์ดํฐํ์ [] ๋ฐฐ์ด๋ณ์์ด๋ฆ = null; int[] scores = new int[100]; for (int i = 0; i System.out.print(i + " ")); //stream ์ด์ฉํด์ ๋๋ค์ ํ์ฉ Arrays.stream..
โญ๋ฌธ์์ด ์ด๊ธฐํ String s = “hello” ์์ํ์ “hello”๋ผ๋ ๋ฌธ์์ด์ด ์๋์ง ํ์ธ, ์์ผ๋ฉด ์์ํ์ ์๋ก ๋ง๋ฆ String s = new String("hello"); ํ ์์ญ์ “hello”๋ผ๋ ๊ฐ์ฒด๋ฅผ ์๋ก ์์ฑ public class StringInitExample { public static void main(String[] args) { String s1 = "hello"; String s2 = "hello"; String s3 = new String("hello"); String s4 = new String("hello"); // ์ฃผ์๊ฐ ๋น๊ต System.out.println(s1 == s2); // true System.out.println(s3 == s4); // false ..