idea详细设置:编码、代码提示大小写、窗口数量限制、自动导包、serialID、重复代码警告、热部署等设置

提示:

idea ultimate 2018.2

idea-file-setttings设置的是当前项目的配置(只针对当前项目生效)
idea-file-others settings相当于以后导入创建项目的默认设置

一、字体编码

with no bom/with bom看这里:https://blog.csdn.net/hadues/article/details/90138693

二、代码提示大小写不敏感

三、窗口数量限制

四、自动导包

五、jdk配置、serialVersionUID生成

implements Serializable后生成类名后alt+enter生成serialVersionUID

 
 

六、重复代码检测警告取消

七、隐藏文件类型设置

八、热部署

参考链接:https://www.cnblogs.com/weizhxa/p/10937542.html

在项目添加热部署插件(可选)

具体步骤:在POM文件添加热部署插件

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <scope>runtime</scope>
</dependency>

九、其他

https://blog.csdn.net/qq_36375988/article/details/82803434

 

猜你喜欢

转载自www.cnblogs.com/foolash/p/11770833.html