I have my project structure something like this.
|--daos
| |
| |--MyDBReader.java
But I want to change it into this one.
daos
|
|--readers
| |
| |--MyDBReader.java
Can anyone tell me the preffered way to do that with intellij preserving all dependencies and usages?
Actually the better answer is:
Go to the project-structure sub-window in IntelliJ.
Create new package.
Just drag and drop the file from the older location to the new location from the project-structure sub-window.
There are two ways (AFAIK)
Method One
Right click the class in the project explorer and
Refactor -> Move
or Select the Class in the project explorer press F6Then select
To Package
enter the new package name and pressRefactor
button.Method Two
Just change the package statement in MyDBReader.java from
package daos;
topackage daos.readers;
, then you will see red line under the package statement, place the cursor on the statement then do ALT+ENTER then select 'Move package to daos.readers'. This method only changes the package but does not update the usages