IntelliJ IDEA 使用經驗總結

一. 準備工做oracle

  1. 點擊此下載 IntelliJ IDEA 開發工具maven

 

二. 註冊ide

  1. 修改  C:\Windows\System32\drivers\etc\hosts ,在末尾添加  0.0.0.0 account.jetbrains.com工具

  2. 點擊此得到註冊碼,進行註冊開發工具

 

三. 整合Mavenui

  1. Maven配置文件 settings.xmlurl

<localRepository>D:/Documents/.m2/repository</localRepository>

<server>
  <id>releases</id>
  <username>admin</username>
  <password>admin123</password>
</server>
<server>
  <id>snapshots</id>
  <username>admin</username>
  <password>admin123</password>
</server>
<server>
  <id>thirdparty</id>
  <username>admin</username>
  <password>admin123</password>
</server>

<profile>
  <id>nexus</id>

  <repositories>
    <repository>
      <id>release</id>
      <name>Nexus Rlease Repository</name>
      <url>http://localhost:8081/repository/maven-releases/</url>
    </repository>

    <repository>
      <id>snapshots</id>
      <name>Nexus Snapshots Repository</name>
      <url>http://localhost:8081/repository/maven-snapshots/</url>
    </repository>

    <repository>
      <id>thirdparty</id>
      <name>Nexus 3rd Party Repository</name>
      <url>http://localhost:8081/repository/maven-thirdparty/</url>
    </repository>

    <repository>
      <id>central</id>
      <name>Nexus Central Repository</name>
      <url>http://localhost:8081/repository/maven-central/</url>
    </repository>

  </repositories>
</profile>
<!-- 可對maven中的項目進行代碼質量管理
<profile>
  <id>sonar</id>

  <activation>
    <activeByDefault>true</activeByDefault>
  </activation>

  <properties>
    <sonar.jdbc.url>jdbc:oracle:thin:@127.0.0.1:1521/orcl</sonar.jdbc.url>
    <sonar.jdbc.driver>oracle.jdbc.driver.OracleDriver</sonar.jdbc.driver>
    <sonar.jdbc.username>admin</sonar.jdbc.username>
    <sonar.jdbc.password>admin</sonar.jdbc.password>
    <sonar.host.url>http://127.0.0.1:9000/</sonar.host.url>
  </properties>

</profile>
-->

<activeProfiles>
  <activeProfile>nexus</activeProfile>
</activeProfiles>
settings.xml

   2. IDEA配置Mavenidea

1. 打開 File-Settings,選擇 Build,Execution,... - Build Tools - Maven
2. 設置 Maven安裝位置(Maven home directory) 

   3. 在 New Module 彈出框中,添加Maven屬性 archetypeCatelog = internal 可加快工程建立spa

  

四. 經常使用快捷鍵code

Ctrl+Click                快速打開光標處的類或方法(跳轉到定義處)Ctrl+N                    查找類Ctrl+Shift+Alt+N          查找類中的方法或變量Ctrl+Shift+F              在全局文件中查找字符串Ctrl+Shift+R              經過名稱打開文件Double Shift              在項目的全部目錄查找文件  
Alt+Insert                能夠生成構造器/Getter/Setter等
Alt+Enter                 光標處,提供快速修復選擇(光標位置不一樣,提供結果也會不同)
ctrl + Alt + ←            回退到上一個操做的地方    ctrl + Alt + →            前進到下一個操做的地方
相關文章
相關標籤/搜索