Eclipse로 포맷 기능을 지정 부분만 오프
Window -> Preferences -> Java -> Code Style -> Formatter -> Edit -> Off/On Tags를 열고 Enable Off/On tags를 체크한다.
소스 코드에서
//@formatter:off
형식을 OFF로 시작하고 //@formatter:on
를 사용하여 ON으로 다시 시작합니다. 다음과 같은 느낌.//@formatter:off
list
.stream()
.filter(s -> s.endsWith(".txt"))
.map(s -> NumberUtils.toInt(s))
.collect(Collectors.toList());
//@formatter:on
Reference
이 문제에 관하여(Eclipse로 포맷 기능을 지정 부분만 오프), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kagamihoge/items/f9c69cd0cdbe5beb37d3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)