일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Git
- 김영한JPA
- 네이버로그인API
- KAKAOLOGINAPI
- JPA
- @Table
- org.apache.ibatis.binding.BindingException
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- hibernate.dialect
- 멱등활용
- @Entity
- 캐쉬가능
- 데이터베이스 방언
- RFC723x
- 자바ORM표준프로그래밍
- anyMatch
- initialDelay
- HTTPMESSAGE
- gitreset
- DB방언
- Transaction not successfully started
- 매핑정보가없는필드
- SpringBoot
- HTTP3
- 무상태프로토콜
- Invalid bound statement (not found)
- fixedDelay
- http
- 네이버 연결된 서비스
- gitrevert
Archives
- Today
- Total
목록anyMatch (1)
twocowsong
자바 람다식 - anyMatch
한줄이라도 줄이고싶다면 당신은 개발자입니다! 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..
IT/JAVA
2022. 4. 5. 10:24