일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- anyMatch
- 데이터베이스 방언
- Transaction not successfully started
- 캐쉬가능
- http
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- 멱등활용
- 김영한JPA
- HTTP3
- initialDelay
- @Table
- 매핑정보가없는필드
- Git
- KAKAOLOGINAPI
- 네이버 연결된 서비스
- RFC723x
- gitrevert
- org.apache.ibatis.binding.BindingException
- HTTPMESSAGE
- 자바ORM표준프로그래밍
- hibernate.dialect
- 네이버로그인API
- 무상태프로토콜
- @Entity
- JPA
- gitreset
- Invalid bound statement (not found)
- SpringBoot
- DB방언
- fixedDelay
- Today
- Total
목록IT/JAVA (2)
twocowsong
프로세스는 컴퓨터에서 연속적으로 실행되고 있는 컴퓨터 프로그램을 말합니다. 스레드는 프로세스내에서 실행되는 흐름의 단위를 말합니다. 일반적으로 한 프로그램은 하나의 스레드를 가지고있지만, 프로그램 환경에 따라 둘 이상의 스레드를 동시에 실행 할 수 있습니다. 이러한 방식을 멀티스레드라고 부릅니다. 자바에서는 스레드를 편하게 사용이가능합니다. public class Test extends Thread{ public static void main(String[] args) { Test sample = new Test(); sample.start(); } public void run() { System.out.println("RUN!!!!!"); } } Test 클래스에서 Thread를 상속받았습니다. Tes..
한줄이라도 줄이고싶다면 당신은 개발자입니다! public class Dish { private String name; private boolean sale; private int price; private Type type; public enum Type{MEAT, FISH, OTHER} } Dish클래스입니다. 음식의 이름, 판매여부, 가격, 타입을 가지고있습니다. List menu = Arrays.asList( new Dish("salmon", true, 430, Dish.Type.FISH), new Dish("rice", true, 500, Dish.Type.OTHER), new Dish("french", true, 600, Dish.Type.MEAT), new Dish("pork", true, 8..