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
- Spring
- 널포인터에러
- wordpress블로그
- enum
- 권한정책
- mybatis
- listnull
- 3tierarchitecture
- AWS
- WordPress
- enumtype
- route53
- instance생성
- stereotypeannotation
- awsconsole
- Annotation
- Java
- port닫기
- 중복제거
- ansible
- lightsail
- db
- 열려있는포트
- anymatch메서드
- 리스트중복값
- PostgreSQL
- conponent
- string_agg()
- 리스트중복제거
- 지옥같은git
Archives
- Today
- Total
Anyway
[DB] Mybatis에서 if문에 enum 비교값 사용하기
public enum IssueType { A, B, C} 클라이언트로부터 받아오는 enum 값에 따라 xml if문에 각각 다른 sql문을 쓰고 싶었다. (DB : postgresql) 첫 번째 작성한 코드 AND A = true AND B = true AND C = true 클라이언트가 issueType을 null 값으로 주고 api를 날렸을 경우 에러가 난다. ➡️ 에러 내용 NullPointerExceptionorg.apache.ibatis.exceptions.Pers..
Database
2024. 12. 18. 15:27