首页 > 代码库 > idea使用的知识

idea使用的知识

如何设置,使IntelliJ IDEA智能提示忽略大小写。
很好用,在settings-Editor-General-Code Completion里设置。
ctrl + b 查看源代码
ctrl + alt + l 格式化代码
ctrl + shift + / 注释一段代码
alt + enter 添加引用
idea创建空web项目:File->New->Project->Java->Web Application
idea创建项目后,手动复制到lib下的jar包,需要在File->Project Structure->Modules->Dependeccies下点击+,选择Library->java,选择lib目录,引用到项目中,避免类等没有引用。
凡是出现找不到包的情况,都可以将找到的包放到JDK\jre\lib\ext下,然后再编译就能够通过
Run/Debug Configurations
Run->Edit Configurations-> ->点击+->新建Tomcat Server->
1. 填写Name
2. Server标签,Application server(选配只好的tomcat路径),Open brower里填上默认访问的url,Tomcat Server Settings,HTTP port:8081
3. Deployment,点击+,选Artifact,自动添加部署,Appliction context:默认是/,可以更改路径,改为/test

鼠标悬停Api提示:
Settings->Editor->General->Other->Show quick documenttation on mouse move Delay(ms):500

idea使用的知识