编辑
替换
批量替换空行
Command+R
打开替换窗口,搜索框中输入 ^\s*\n
,勾选 Regex
复选框后 Replace All
设置
字体
Maven
IDEA 根据 maven archetype 的本质,其实是执行 mvn archetype:generate
命令,该命令执行时,需要指定一个archetype-catalog.xml
文件。
该命令的参数-DarchetypeCatalog
,可选值为:remote,internal ,local等,用来指定archetype-catalog.xml文件从哪里获取。默认为remote,即从 http://repo1.maven.org/maven2/archetype-catalog.xml 路径下载archetype-catalog.xml
文件。http://repo1.maven.org/maven2/archetype-catalog.xml 文件约为3-4M,下载速度很慢,所以导致创建过程缓慢。
可以在 settings>Building,Exceptiong,Deployment>Maven>Runner
中配置 VM Options
来指定使用本地文件。如下图所示:
推荐做法
- 项目、模块等命名时,尽量使用下划线(避免用横杠)来连接多个单词。
Mac OS 下
快捷键
快速跳转到文件头
fn + Command + ←
快速跳转到文件尾
fn + Command + →
快速跳转到当前窗口头
cn +Command + ↑
快速跳转到当前窗口尾
fn + Command + ↓
快速跳转到某行/列
Command + L
添加 MyBatis 的 XML 文件模版
Preference –> Editor –> File and Code Templates
模版内容:
1
2
3
4
5
6
7
<mapper namespace="">
</mapper>创建时选用 MybatisMapper 模版