一、快捷键:

Ctrl+F 文件内查找

Ctrl+Shift+F 全局查找

Ctrl+Shift+N 查找文件

Ctrl+Alt+← 返回上一步

Ctrl+Alt+→ 返回下一步

二、编译相关:

如果是maven的相关,但是需要引入本地的包编译,需要在pom.xml中增加以下内容:

<plugin>

<artifactId>maven-compiler-plugin</artifactId>

<version>3.7.0</version>

<configuration>

<source>1.8</source>

<target>1.8</target>

<compilerArguments>

<extdirs>WebContent\WEB-INF\lib</extdirs>

</compilerArguments>

  </configuration>

</plugin>

其中<extdirs>WebContent\WEB-INF\lib</extdirs>填写需要引入包的地址路径

 

最新文章

  1. ASP.NET MVC5 网站开发实践(二) Member区域 - 全部文章列表
  2. Linux 下Nginx编译安装
  3. Codeforce 370J Bottles(动态规划-01背包)
  4. 泛在传感器网络(Ubiquitous Sensor Network; USN)
  5. c/s模式 (C#)下Ftp的多文件上传及其上传进度
  6. hiho_1141
  7. eclipse 或MyEclipse将工程进行移动的时候会对@Override报错的处理方法
  8. hdu 4812 D Tree(树的点分治)
  9. jQuery获取当前对象标签名称
  10. 基于bootstrap的bootstrap-editable插件实现即时编辑功能
  11. Guava 教程1-使用 Google Collections,Guava,static imports 编写漂亮代码
  12. 分布式协调服务Zookeeper集群之ACL篇
  13. 业务线--node中间层做一个透传的项目
  14. “The subscription does not exist” when a distributor primary replica fails over to a replica that does not use the same agent profile
  15. Hadoop生态圈-通过CDH5.15.1部署spark1.6与spark2.3.0的版本兼容运行
  16. Modularizing your graphQL schemas
  17. mysql的mysqli异步与php的携程
  18. CodeForce 832A Sasha and Sticks
  19. C++ 多态性和虚函数
  20. Fms3中client端与server端交互方式汇总

热门文章

  1. 【linux-./configure 配置文件时出错问题】
  2. Mysql分片后分页排序拉取数据的方法
  3. cinder服务状态up/down的源码梳理
  4. Flask-SQLAlchemy 配置,处理对象-关系,一对多,多对多
  5. [Xcode 实际操作]三、视图控制器-(9)在Storyboard中使用标签和按钮控件
  6. click点击事件先后顺序的问题
  7. vue seo管理 vue-meta-info
  8. promise封装小程序的蓝牙类
  9. JMeter - 如何在多个测试环境中运行多个线程组
  10. python基本数据类型练习