网站首页 > 技术文章 正文
IDEA一些不错的插件分享
目录 IDEA一些不错的插件分享 插件集合
CamelCase
Translation
LiveEdit
MarkDown Navigator
Jrebel
CheckStyle-IDEA
Alibaba Java Coding Guidelines
Ideavim
Maven Helper
FindBugs-IDEA
GsonFormat
Key promoter X
.ignore
JVM Debuger Memory View
CMD Support
Batch Scripts Support
BashSupport
Docker integration
JMH plugin
ANSI Highlighter
Ideolog
RestfulToolkit
CodeGlance
Lombok plugin
activate-power-mode
Background Image Plus
Iedis
Mongo Plugin
VisualVM Launcher
GenerateAllSetter
MyBatisCodeHelperPro
Easy Code
IDEA Mind Map
SequenceDiagram
Material Theme UI
String Manipulation
JUnit Generator V2.0
设置方法
插件集合
CamelCase
驼峰式命名和下划线命名互相转换。使用方法:选中要变化的地方,使用快捷键Shift+Alt+U即可。
Translation
翻译插件,现支持Google翻译、有道翻译。
LiveEdit
用于调试样式,更改样式,chrome浏览器自动对应地变化出更改后的效果,连刷新都不用 IDEA已经集成
MarkDown Navigator
非常好用的编辑器,需要破解(或购买激活)才能使用
Jrebel
热部署插件,需要破解(或购买激活)才能使用
CheckStyle-IDEA
提供代码规范检查(可选安装,阿里巴巴的规范挺不错的)
Alibaba Java Coding Guidelines
阿里巴巴Java规范插件 需要该插件的可以添加公众号:程序零世界
Ideavim
神级编辑器,熟悉vim编辑器的可以安装使用(个人不用)
Maven Helper
Maven依赖分析等功能
FindBugs-IDEA
静态分析工具
GsonFormat
json->object
Key promoter X
显示点击某个功能选项的快捷键(如果有的话)
.ignore
.ignore文件支持
JVM Debuger Memory View
Debug时,查看内存中对象 IDEA已经集成
CMD Support
CMD文件支持
Batch Scripts Support
Windows批处理脚本支持
BashSupport
Linux Bash支持
Docker integration
Docker支持
JMH plugin
JMH基准测试支持插件
ANSI Highlighter
log文件高亮支持
Ideolog
快速跳转到日志文件中Error位置等
RestfulToolkit
Restful工具集,支持SpringMVC下的URL导航到对应方法等。
CodeGlance
预览文本,参见sublime
Lombok plugin
Lombok必备。GitHub
activate-power-mode
Background Image Plus
设置背景图片
Iedis
Redis客户端(收费)
Mongo Plugin
MongoDB客户端
VisualVM Launcher
运行时启动visualvm,jvm调优
GenerateAllSetter
生成一个对象所有set方法调用并附上默认值
MyBatisCodeHelperPro
mybatis代码自动生成插件(收费)
Easy Code
基于IntelliJ IDEA开发的代码生成插件,支持自定义任意模板(Java,html,js,xml)。
IDEA Mind Map
IDEA 思维导图工具
SequenceDiagram
生成方法调用的时序图
Intellij IDEA 显示调用时序图插件 SequenceDiagram
Material Theme UI
眼睛舒适的主题
String Manipulation
字符串处理,提供驼峰、下划线,base64、md5
JUnit Generator V2.0
快捷生成单元测试类
设置方法
1.
2.Output Path:${SOURCEPATH}/../../test/java/${PACKAGE}/test/${FILENAME}
3.>Default Template:Junit 4
4.>Junit 4内容
########################################################################################
##
## Available variables:
## $entryList.methodList - List of method composites
## $entryList.privateMethodList - List of private method composites
## $entryList.fieldList - ArrayList of class scope field names
## $entryList.className - class name
## $entryList.packageName - package name
## $today - Todays date in MM/dd/yyyy format
##
## MethodComposite variables:
## $method.name - Method Name
## $method.signature - Full method signature in String form
## $method.reflectionCode - list of strings representing commented out reflection code to access method (Private Methods)
## $method.paramNames - List of Strings representing the method's parameters' names
## $method.paramClasses - List of Strings representing the method's parameters' classes
##
## You can configure the output class name using "testClass" variable below.
## Here are some examples:
## Test${entry.ClassName} - will produce TestSomeClass
## ${entry.className}Test - will produce SomeClassTest
##
########################################################################################
##
#macro (cap $strIn)$strIn.valueOf($strIn.charAt(0)).toUpperCase()$strIn.substring(1)#end
## Iterate through the list and generate testcase for every entry.
#foreach ($entry in $entryList)
#set( $testClass="${entry.className}Test")
##
package ${entry.packageName}.test;
import org.junit.Test;
import org.junit.Before;
import org.junit.After;
/**
* ${entry.className} Tester.
*
* @author Switch
* @version 1.0
*/
public class $testClass {
@Before
public void init() throws Exception {
}
@After
public void destroy() throws Exception {
}
@Test
public void test${entry.className}() {
}
#foreach($method in $entry.methodList)
/**
*
* Method: $method.signature
*
*/
@Test
public void test#cap(${method.name})() throws Exception {
}
#end
#foreach($method in $entry.privateMethodList)
/**
*
* Method: $method.signature
*
*/
@Test
public void test#cap(${method.name})() throws Exception {
#foreach($string in $method.reflectionCode)
$string
#end
}
#end
}
#end
猜你喜欢
- 2024-11-10 推荐:本人使用频率最高的20款Mac软件(全)
- 2024-11-10 超全面的web开发工具和资源,全部都是免费的,还不拿走?
- 2024-11-10 markdown格式什么意思?Markdown工具分享
- 2024-11-10 如何避免Markdown中文乱码问题?Markdown中文乱码问题的解决方法
- 2024-11-10 杂谈:Notepad++编辑器替代之说(notepad++可以编译吗)
- 2024-11-10 Jetbrains好用的插件(经验总结)(jetbrains的projector)
- 2024-11-10 2020最完整的IDEA插件大全,还不知道这些,你就out了
- 2024-11-10 Mac 上有哪些好用的 txt 纯文本编辑器?
- 2024-11-10 怎么用markdown做笔记?选对工具很重要
- 2024-11-10 Sublime Text 3优点(sublime text使用教程)
- 最近发表
-
- 使用Knative部署基于Spring Native的微服务
- 阿里p7大佬首次分享Spring Cloud学习笔记,带你从0搭建微服务
- ElasticSearch进阶篇之搞定在SpringBoot项目中的实战应用
- SpringCloud微服务架构实战:类目管理微服务开发
- SpringBoot+SpringCloud题目整理
- 《github精选系列》——SpringBoot 全家桶
- Springboot2.0学习2 超详细创建restful服务步骤
- SpringCloud系列:多模块聚合工程基本环境搭建「1」
- Spring Cloud Consul快速入门Demo
- Spring Cloud Contract快速入门Demo
- 标签列表
-
- cmd/c (57)
- c++中::是什么意思 (57)
- sqlset (59)
- ps可以打开pdf格式吗 (58)
- phprequire_once (61)
- localstorage.removeitem (74)
- routermode (59)
- vector线程安全吗 (70)
- & (66)
- java (73)
- org.redisson (64)
- log.warn (60)
- cannotinstantiatethetype (62)
- js数组插入 (83)
- resttemplateokhttp (59)
- gormwherein (64)
- linux删除一个文件夹 (65)
- mac安装java (72)
- reader.onload (61)
- outofmemoryerror是什么意思 (64)
- flask文件上传 (63)
- eacces (67)
- 查看mysql是否启动 (70)
- java是值传递还是引用传递 (58)
- 无效的列索引 (74)