Plugin
- Lombok - Settings > Build, Excuting, Deployment > Compiler > Annotaton Processors > Enable annotation processing 체크
- Grep Console
- Jrebel
- Presentation Assistant
- Lombok
- AsciiDoc
- CamelCase
- Docusaurus
- GitToolBox
- Korean Language Pack
- Power Mode II
- Translation (https://plugins.jetbrains.com/plugin/8579-translation)
Live Templates 설정
- addlog - Applicable in Java: declaration
Edit Template Variables - Name=CLASSNAME, Expression=className() - private static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger($CLASSNAME$.class);
- dlog - Applicable in Java: expression
Edit Template Variables - Name=VAR, Expression=completeSmart() - logger.debug("===== $END$: {}", $VAR$);
- addtest - use static import if posible 체크
- @org.junit.Test
public void test$EXPR$() {
$END$
org.junit.Assert.assertThat("업무", 1, org.hamcrest.Matchers.is(1));
}