我的idea配置

孤街浪徒 提交于 2020-01-07 04:15:08

【推荐】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

  • 编译版本

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!