1.安装idea
2.# IDEA2018.3没有Spring Initializr
3.安装(翻译)插件——idea安装插件plugin(主要针对网络连接不上的情况)
4.支持有道翻译——IDEA Translation插件,有道智云(有道翻译)应用ID,密钥申请教程
5.打开自动编译开关——build project automatically
6.忽略大小写开关——Match case
7.智能导包开关——Auto import
8.悬浮提示开关——
9.取消单行显示tabs的操作——
10.项目文件编码——UTF-8
Transparent native-to-ascii conversion的意思是:自动转换ASCII编码。
他的工作原理是:在文件中输入文字时他会自动的转换为Unicode编码,然后在idea中发开文件时他会自动转回文字来显示。
这样做是为了防止文件乱码。
这样你的properties文件,一般都不会出现中文乱码!
11.滚轴修改字体大小
12.设置行号显示
【5——12】参考链接:IDEA优化配置(1)--- IDEA需要改的几个配置(基于Intellij IDEA 2018版)
13.将下载好的主题放置到【D:\Program Files\IntelliJ IDEA 2018.3.3\lib\Color_themes】目录下,import setting然后重启即可选择主题样式。
14.更换主题样式
15.设置背景图片
16.IDEA搜索插件
参考链接:Intellij IDEA 的Plugins 搜索不了插件,setting->Plugins加载很慢出不来的 解决方法
17.Eclipse快捷键风格
IDEA优化配置(4)--- Intellij IDEA快捷键列表【切换为Eclipse风格快捷键】
18.Failed to start component [Connector[HTTP/1.1-8080]]——端口被占用
解决办法,打开任务管理器,关闭java服务
19.An incompatible version [1.2.12] of the APR based Apache Tomcat Native library is installed...——tomcat的apr不适用,需要更换
Apache把 httpd的底层库与上层应用逻辑分离,底层库单独发行,底层这就是Apache Portable Runtime Library,简称APR。
APR把很多常用功能都封装好了,内容非常丰富,主要有:
Atomic operations
Dynamic Shared Object loading
File I/O
Locks (mutexes, condition variables, etc)
Memory management (high performance allocators)
Memory-mapped files
Multicast Sockets
Network I/O
Shared memory
Thread and Process management
Various data structures (tables, hashes, priority queues, etc)
参考链接:
1.An incompatible version [1.2.12] of the APR based Apache
Tomcat Native library is installed...
2.SpringBoot内置tomcat出现error:An incompatible version [1.1.32] of the APR based Apache Tomcat Native lib
20.安装Alibaba Java Coding Guidelines的插件
插件作用;阿里开发的此插件应该说极大的改善程序员的代码质量,帮助程序员规范自己的代码。
tools下可以切换中英文
参考链接:在IDEA上使用Alibaba开发的Java Code Guidelines插件
github上对该插件的使用实例
网友评论