2020国产成人精品视频,性做久久久久久久久,亚洲国产成人久久综合一区,亚洲影院天堂中文av色

分享

BoomMan - 開(kāi)發(fā)工具

 路人甲Java 2020-01-15

插件列表

1.Alibaba Java Coding Guidelines                     
2.Bytecode Editor                                             
3.Bytecode Viewer                                                  
4.Grep Console
5.Java Bytecode Decompiler
6.Jrebl                              
7.Lombok
8.Maven Helper
9.Mybatis Log Plugin
10.MybatisCodeHelperPro
11.RestfulToolkit
12.Translation
13.Maven Integration
14.Codota
15.SearchOverflow
16.GsonFormat
17.Codota //一個(gè)語(yǔ)法顯示工具,常見(jiàn)new 對(duì)象方式  Android中用的比較多哈
18.CamelCase 駝峰轉(zhuǎn)換共計(jì)  ctrl+shift+u
19.FindBugs-IDEA
20.String Manipulation //  Alt+m  字符串日常開(kāi)發(fā)中經(jīng)常用到的,但是不同的字符串類型在不同的地方可能有一些不同的規(guī)則,比如類名要用駝峰形式、常量需要全部大寫(xiě)等,有時(shí)候還需要進(jìn)行編碼解碼等。這里推薦一款強(qiáng)大的字符串轉(zhuǎn)換工具——String Manipulation。
21..ignore
22.Key promoter X 
23.AceJump // ctrl +;
24.activate-power-mode //一款無(wú)聊的屏幕按鍵抖動(dòng)
25.VisualVM Launcher java對(duì)象內(nèi)存占用

不常用但有用的快捷鍵

知道類名查找類 : Ctrl+Shift+Alt+N;

查找接口的實(shí)現(xiàn)類: ` ctrl + alt +B`

查看類或接口的繼承關(guān)系:ctrl + h

好用的操作

無(wú)法下載源碼可能是maven用的版本太新了 http://apache./maven/maven-3/3.5.4/binaries/ 用3.5.4試下哈

自動(dòng)下載源碼
在 設(shè)置中 maven -> import source document

代碼提示

Settings: Code Completion

Match case :
在這里插入圖片描述
Actions
Ctrl +Shift +A

粘貼板歷史

Ctrl +Shift +V

Smart Step Into

Shift+F7

Find Function

Ctrl+F12

查看說(shuō)明

Ctrl + Q

查看參數(shù)定義

Ctrl+Shift+I

Jrebel

http://www.:8085/2475a295-cf38-44af-b440-1ffa98d9bed8

如果你經(jīng)常看源碼:

知道類名查找類:Ctrl+Shift+Alt+N;

查看類的繼承關(guān)系
鼠標(biāo)右鍵 Diagrams

windows10無(wú)法取消固定

路徑X(系統(tǒng)盤(pán)符):\Users\(當(dāng)前用戶名)\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar 刪除快捷方式,然后在任務(wù)欄點(diǎn)下圖標(biāo),跳出對(duì)話框后點(diǎn)確定

other

ea5d439e-4341-41de-ad1f-af56c1d4de3a
6240dec7-379f-4742-bcad-7085c7ae789d

Web項(xiàng)目啟動(dòng)打印url地址

   ConfigurableApplicationContext context = new SpringApplication(CrawlerFruitApplication.class).run();
        try {
            String host = InetAddress.getLocalHost().getHostAddress();
            TomcatServletWebServerFactory tomcatServletWebServerFactory = (TomcatServletWebServerFactory) context.getBean("tomcatServletWebServerFactory");
            int port = tomcatServletWebServerFactory.getPort();
            String contextPath = tomcatServletWebServerFactory.getContextPath();
            log.info("<------------------------------------------ http://{}:{}{}/ ------------------------------------------>", host, port, contextPath);
        } catch (UnknownHostException e) {
            log.error("項(xiàng)目啟動(dòng)異常", e);
        }
        log.info("{}系統(tǒng)啟動(dòng)成功", CrawlerFruitApplication.class.getSimpleName());

Windows Docker配置

mysql安裝

docker pull mysql
docker run --name pwc-mysql -e MYSQL_ROOT_PASSWORD=123456 -p 3306:3306 -d mysql

redis安裝

docker pull redis
docker run -p 6379:6379 -d redis redis-server

docker

{
  "registry-mirrors": [
    "https://euc6prvp.mirror."
  ]
}

docker安裝地址:
https://store./editions/community/docker-ce-desktop-windows

elasticsearch

docker run -it --name elasticsearch -d -p 9200:9200 -p 9300:9300 -p 5601:5601 elasticsearch

kibana 版本需要和es版本一致才能啟動(dòng)成功

input
{
		tcp
		{
			port => 8888
			codec => json
		}
}
 
output
{
	   elasticsearch{
			hosts => "172.17.0.2:9200"
			index => "indextest"
		}
 
		stdout{
			codec => rubydebug
		}
}

kibana安裝

docker run  -p 8888:8888 -d -v /c/Users/BoomManPro/docker/logstash:/docker/logstash logstash -f /docker/logstash/logstash.config

Maven亂碼解決

增加 -Dfile.encoding=GB2312
在這里插入圖片描述

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多