일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- DB방언
- 네이버로그인API
- 김영한JPA
- gitrevert
- 자바ORM표준프로그래밍
- fixedDelay
- @Table
- RFC723x
- 무상태프로토콜
- HTTP3
- 멱등활용
- 캐쉬가능
- 네이버 연결된 서비스
- @Entity
- Invalid bound statement (not found)
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- anyMatch
- org.apache.ibatis.binding.BindingException
- initialDelay
- hibernate.dialect
- SpringBoot
- JPA
- HTTPMESSAGE
- http
- KAKAOLOGINAPI
- 매핑정보가없는필드
- Transaction not successfully started
- gitreset
- 데이터베이스 방언
- Git
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