【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>
-
标签不隐藏:editor->general->editor tables:
去掉show tables in one row 对勾 -
提示大小写模糊:editor->general->code completion:
去掉match case对勾 -
方法分割线:editor->general->appearance:
show method separators打对勾 -
编码格式:editor->code style->file encoding :
改为utf-8,好几处;
transparent native-to-ascii conversion(允许本地文件转换)打勾 -
自动导包:editor->general->aoto import:
add unambiguous imports on the fly打勾;
optimize import and the fly打勾. -
自动编译:build,execution,deployment->complier:
build project automatically打勾;
compile independent modules inparallel打勾 -
配置maven,修改配置文件,制定编译版本
<profile>
<id>jdk1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
<encoding>UTF-8</encoding>
</properties>
</profile>
-
可以在view中中打开toolber和tool buttons
-
编译版本
来源:oschina
链接:https://my.oschina.net/depeng414/blog/3153120