728x90
반응형
java.lang.UnsupportedOperationException 에러가 발생하는 이유는
List 를 생성하지 않고 사용해서 그런 것이다.
List<String> alscSendDateTypeList = Arrays.asList("4", "5");
List<String> alscSendDateTypeList = new ArrayList<>(Arrays.asList("4", "5"));
728x90
반응형
'개발중 > troubleshooting' 카테고리의 다른 글
spring boot Process finished with exit code 0 해결 (0) | 2022.03.25 |
---|---|
@ModelAttribute 로 파라메터 사용시 한글이 깨질때 (1) | 2022.03.08 |
@Resource 인식이 안될 때 해결방법 😷 (0) | 2022.02.19 |
DB 락 (lock) 걸렸을 때 대처법 (0) | 2022.02.18 |
m2 분리 시켜 관리하는 방법 🙋♀️💡 (0) | 2022.02.09 |