[링크] @RequiredArgsConstructor를 통한 의존성 주입
https://lionhead93.github.io/spring/DI-lombok/
https://lionhead93.github.io/spring/DI-lombok/
https://github.com/b1uec0in/JosaFormatter 나중에 봐야지. 일단 깃헙 스타 박습니다~ https://okky.kr/article/549842
https://solbel.tistory.com/1240
https://towardsdatascience.com/25-lesser-known-java-libraries-you-should-try-ff8abd354a94
* commons StringUtils.containsAny([타겟 문자열], [비교대상1], [비교대상2]..); * containsAll() 같은 건 없지만, 그거 비슷하게 구현한 메서드 public static boolean hasAndKey(String value, String… keys) { for (String key : keys) { if (value.contains(key) == false) { return false; } } return true; }
org.springframework.test.util.ReflectionTestUtils.setField(obj, “fieldName01”, fieldValue01);
– package explorer 에 붙여넣으면 사라진다 (왜때문에??) – project explorer 에 붙여넣으면 보존된다. – 붙여넣은 후 git commit 을 해 보면 잘 들어왔는지 알 수 있다.
/** * Fragment를 신규 생성하여 리턴한다. (동적 생성) * * – 추가기능으로 액션바의 타이틀을 arguments 에 넣어준다. * * @param clazz * @param <T> * @return */ public static <T extends BaseFragment> T newFragment(Class<T> clazz){ T ret = null; try { ret = clazz.newInstance(); } catch (java.lang.InstantiationException e) { e.printStackTrace(); } catch (IllegalAccessException e)… Read More »