巧用IntelliJ IDEA的快捷键提升开发效率

Alt+数字 打开窗口

Alt+1 打开Project窗口

Alt+7 打开方法结构窗口

package com.imooc;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.context.annotation.ComponentScan;

import org.springframework.scheduling.annotation.EnableAsync;

import org.springframework.scheduling.annotation.EnableScheduling;

import tk.mybatis.spring.annotation.MapperScan;

@SpringBootApplication

//扫描 mybatis mapper 包路径

@MapperScan(basePackages ="com.imooc.mapper")

//扫描 所有需要的包, 包含一些自用的工具类包 所在的路径

@ComponentScan(basePackages= {"com.imooc", "org.n3r.idworker"})

//开启定时任务

@EnableScheduling

//开启异步调用方法

@EnableAsync

public class ImoocApplication {

public static void main(String[] args) {

SpringApplication.run(ImoocApplication.class, args);

  }

}

Ctrl+Alt+[] idea窗口切换

Ctrl+E 浏览过的文件列表

Ctrl+Shift+E 修改过的文件列表

F11 标记书签

Ctrl+F11 标记带编号的书签

Ctrl+数字 跳转到对应的编号书签

Alt+2 打开Favorites

Ctrl+N 搜索Class

Ctrl+N+N 搜索Class包括jar中的

Ctrl+Shift+N 搜索文件

Ctrl+Shift+N+N 搜索文件包括jar中的

Ctrl+Shift+Alt+N 搜索方法

Ctrl+Shift+Alt+N+N 搜索方法包括jar中的

Ctrl+Shift+F 搜索字符串

Ctrl+Shift+U 大小写转换

Ctrl+Shift+Alt+J 批量选中操作

Live Templates 创建快捷模板

你可能感兴趣的:(巧用IntelliJ IDEA的快捷键提升开发效率)