코딩하다가보면 가끔 특정 코드 블럭에는 formatter를 적용 안해야하는 부분이 있음.(가독성을 위해서)
그럴 때 사용하는 방법
- Enable tag
-
- 소스에 적용 샘플
// @formatter:off
@Override
public void addInterceptors(InterceptorRegistry registry) {
/** 인터셉터 */
registry.addInterceptor(getAccessInterceptor())
.addPathPatterns( "/**")
.excludePathPatterns( "/")
.excludePathPatterns( "/favicon.ico")
.excludePathPatterns( "/resources/**")
.excludePathPatterns( "/error/**");
super.addInterceptors(registry );
}
// @formatter:on
'JAVA > 툴 및 팁' 카테고리의 다른 글
오라클 사이트에서 JDK8 다운로드해서 리눅스 설치용 wget 명령어 생성 방법 (0) | 2019.05.06 |
---|---|
nexus 설치 및 셋팅 (0) | 2019.03.22 |
pinpoint 설치 방법- 1.8.1 버전 (0) | 2018.12.21 |
pinpoint 설치 방법 메모 (0) | 2017.11.16 |
JAVA 웹 개발환경 셋팅 - STS(Eclipse) (0) | 2016.12.18 |