欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IDEA配置优化

程序员文章站 2024-02-02 10:38:58
...

原文地址:http://blog.csdn.net/hw1287789687/article/details/51058346

IDEA 配置优化,提高开发效率

去掉烦人的indent提示

IDEA配置优化 
如何去掉呢? 
打开IDEA 的preferences|Editor|Code Style, 
去掉下图中的两个勾选: 
IDEA配置优化

设置文件的模板

我们创建一个java文件时,会在类的上面自动添加注释,包括作者和日期. 
其实我们可以定制这个自动添加的注释: 
IDEA配置优化

原来是这样的: 
IDEA配置优化 
修改为: 
IDEA配置优化

定制自己的snippet

snippet就是代码片段 
用过eclipse的同学都知道,我们输入Sysout就会自动转换为:

System.out.println();
  • 1

IDEA配置优化 
其实IDEA 也有相同的功能: 
IDEA配置优化

添加自定义文件类型

IDEA中没有jsp,所以我手动添加JSP: 
IDEA配置优化
下面附上JSP的模板:

<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8" %>

<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://"
            + request.getServerName() + ":" + request.getServerPort()
            + path + "/";
    if (path.equals("/")) {
        path = "";
    }
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <link rel="stylesheet" type="text/css" href="<%=path%>/static/css/global.css">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport"
          content="width=device-width, initial-scale=1.0, maximum-scale=1">
    <script type="text/javascript" src="http://hbjltv.com/static/js/jquery-1.11.1.js"></script>

    <title>#[[$Title$]]#</title>
</head>
<body>
#[[$END$]]#
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

去掉框架检查提示

IDEA配置优化 
如何去掉框架的检查提示呢? 
IDEA配置优化

Code completion case sensitivity

By default IntelliJ IDEA code completion case sensitivity only affects the first letter you type. This strategy can be changed in the Settings/Preferences dialog, Editor | General | Code Completion, so you can make to either make the IDE sensitive to all letters or make it insensitive to the case at all, based on what better fits your preferences. 
改为不区分大小写: 
IDEA配置优化

解决mac IDEA控制台中文乱码

IDEA配置优化
解决方法: 
IDEA配置优化 
IDEA配置优化

JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8
  • 1

注意:下面的四个,每个都得手动设置一次: 
IDEA配置优化 
解决之后: 
IDEA配置优化
参考:idea 控制台输出 中文乱码 解决方法

隐藏IDEA cast unchecked警告

IDEA配置优化

未保存的文件标识出

IDEA配置优化