How can I change top level package name in IntelliJ IDEA?

夙愿已清 提交于 2019-12-03 02:57:24

问题


I have a package structure: com.report.domain.model

I would like to change it to com.reporting.domain.model. When I select RefactorRename on package com.report.domain.model, I only see an option to rename 'model'. I have tried switching between Project view and Package, but to no avail. I know how to make this change in Eclipse via Navigator view, but how can I do the same in IntelliJ IDEA?


回答1:


In the Project Window, click on the Gears icon in the title bar

and deselect "Compact Empty Middle Packages". Then you can separately select the report package and rename it.

See also: http://www.jetbrains.com/idea/webhelp/project-tool-window.html#d242351e401

N.B. As of IntelliJ IDEA 2016.3, there is a bug in the menu and when the option is selected, it has a different label "Hide Empty Middle Packages", see https://youtrack.jetbrains.com/issue/IDEA-168362.




回答2:


To change the full package name:

User jkovacs has already answered this, but I'm going to cover this in a bit more detail. For example, if you want to change com.example.app to my.awesome.game, then:

  1. In your Project pane, click on the little gear icon (

    )
  2. Uncheck / de-select the Compact Empty Middle Packages option:

  3. Your package directory will now be broken up in individual directories.

  4. Individually select each directory you want to rename, and:

    • Right-click it
    • Select Refactor
    • Click on Rename
    • In the Pop-up dialog, click on Rename Package instead of Rename Directory
    • Enter the new name and hit Refactor
    • Allow a minute to let Android Studio update all changes
    • Note: When renaming com in Android Studio, it might give a warning. In such case, select Rename All:

  5. Now open your Gradle Build File (build.gradle - Usually app or mobile). Update the applicationId to your new Package Name and Sync Gradle, if it hasn't already been updated automatically:

  6. Done! Anyway, Android Studio needs to make this process a little simpler.



来源:https://stackoverflow.com/questions/16764277/how-can-i-change-top-level-package-name-in-intellij-idea

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!