Renaming a project in IntelliJ IDEA

前端 未结 13 1347
無奈伤痛
無奈伤痛 2020-12-07 14:48

I have some projects where the directory containing the project is called \"Code\".

When I open IDEA, in my recent projects list all I see is that name.

Is t

相关标签:
13条回答
  • 2020-12-07 15:21

    For Gradle Springboot intellij project:
    1. settings.gradle :
    rootProject.name = 'new-name-project'
    add/edit the above line at the bottom of the page
    2. application.properties
    spring.application.name=new-name-project
    add/edit the above line at the top of the page
    3. Go to file > project stricture > Project> Project-name: new-name-project
    4. Apply and restart Intellij

    0 讨论(0)
提交回复
热议问题