idea detailed settings: encoding, code hints case, the number of window limits, auto pilot packet, serialID, a warning code is repeated, thermal deployment settings

prompt:

idea ultimate 2018.2

idea-file-setttings setting is currently configured project (only take effect for the current project)
IDEA-File-Import Settings Others create default settings for the project after the equivalent of

First, the font encoding

with no bom / with bom see here: https://blog.csdn.net/hadues/article/details/90138693

 

Second, the code hints not case sensitive

Third, the window quantitative restrictions

 

Fourth, automatic guided package

 

Five, jdk configuration, serialVersionUID generation

 

After implements Serializable class name generated alt + enter generated serialVersionUID

 

 

Sixth, duplicate code detection warning canceled

Seven hide file type settings

Eight, hot deployment

Reference Links: https://www.cnblogs.com/weizhxa/p/10937542.html

 

 

In the project add hot deployment plug-in (optional)

 

Specific steps: Add hot deployment plug-in POM file

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

 

9. Other

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

 

 

 

 

Guess you like

Origin www.cnblogs.com/foolash/p/11770833.html