Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- SpringBoot
- Exception
- 자바
- spring
- springdatajpa
- Spring Boot
- 김영한
- 그리디
- kotlin
- Greedy
- 스프링 핵심 기능
- 스프링
- QueryDSL
- 스프링 핵심 원리
- 인프런
- Proxy
- 알고리즘
- JDBC
- 백준
- JPQL
- Servlet
- Android
- AOP
- transaction
- java
- Thymeleaf
- db
- jpa
- http
- pointcut
Archives
- Today
- Total
목록쓰레드 (1)
개발자되기 프로젝트
Thread 클래스의 메서드
1. Thread 우선순위 Thread.MIN_PRIORITY(=1)~Thread.MAX_PRIORITY(=10) 디폴트 우선순위: Thread.NORMAL_PRIORITY(=5) 우선 순위가 높은 Thread가 CPU의 배분을 받을 확률이 높음 setPriority()/ getPriority() Thread 우선순위 예제 class PriorityThread extends Thread{ @Override public void run() { int sum = 0; Thread t = Thread.currentThread(); System.out.println(t + " start"); for (int i=0; i
Java/다양한 기능
2021. 11. 2. 23:52