zoukankan      html  css  js  c++  java
  • Idea

    Recent file   -> ctril+e  (查找最近打开的文件)

    implementations   --> ctril+q (打开实现类)

    back  --> ctril+r (返回上一步操作记录)

    forward--> ctril+t (前一步操作记录)

    bookmark --> shift+v (标记书签-进行页数设置)   ctril+页数(回调到标签页)

    toggle line breakpoint --> shift+z(设置断点)

    debug run -->shift+d(debug 运行)

    stop -->shift+a (停止运行)

    run -->shift+f (程序运行)

    step over --> shift+1(debug 下一步)

    step into -->shift+2(debug 进入)

    resume pro -->shift+3(进入下一个断点)

    run to cursor-->shift+4 (运行至鼠标制定行)

    show breakpoint-->shift+q(显示全部断点)

    uml-->shift+w (uml 类图)

    idea live template

    1.Gson 对象转json字符串

    gson
    
        Gson builder = new GsonBuilder().create();
        String json = builder.toJson(你的对象);

    2.空判断

    sb
    
    StringUtils.isBlank();

    3.非空判断

    snb
    
    StringUtils.isNotBlank();

    jsp  foreach 循环

    foreach
    
        <c:choose>
        <c:when test="${not empty dataPager.records}">
        <c:forEach items="${dataPager.records}" var="var" varStatus="vs">
        
        </c:forEach>
        </c:when>
            <c:otherwise>
                
            </c:otherwise>
        </c:choose>
        

    jsp  if 

    if
    
        <c:if test="${}">
                            
        </c:if>

    jsp el

    el
    
    ${}
  • 相关阅读:
    python基础--文件操作实现全文或单行替换
    python基础7--集合
    python读写json文件
    python基础6--目录结构
    python基础5--模块
    Ubuntu的一些常用快捷键
    ubuntu dpkg 命令详解
    linux(Ubuntu)安装QQ2013
    fcitx-sogoupinyin下载地址和安装
    Ubuntu下装QQ2014
  • 原文地址:https://www.cnblogs.com/iscys/p/10169155.html
Copyright © 2011-2022 走看看